/usr/share/common-lisp/source/lexer/packages.lisp is in cl-lexer 1-4.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 | ;;; -*- Mode: Lisp; Syntax: Common-Lisp; Base: 10 -*-
(defpackage "LEXER"
#+:Genera (:use COMMON-LISP CLOS REGEX)
#-:Genera (:use COMMON-LISP REGEX)
(:export "TOKENIZE" "DEFLEXER"
"%N" "%0" "%1" "%2" "%3" "%4" "%5" "%6" "%7" "%8" "%9" "%10"
"NUM" "INT" "NEXTCH" "UNGETCH"
))
(defun delete-lexer ()
(delete-package :LEXER))
|