Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

hyperspec: allow customize for hyperspec vars #715

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
12 changes: 8 additions & 4 deletions lib/hyperspec.el
Original file line number Diff line number Diff line change
Expand Up @@ -38,21 +38,25 @@
(require 'browse-url) ;you need the Emacs 20 version
(require 'thingatpt)

(defvar common-lisp-hyperspec-root
(defcustom common-lisp-hyperspec-root
"http://www.lispworks.com/reference/HyperSpec/"
"The root of the Common Lisp HyperSpec URL.
If you copy the HyperSpec to your local system, set this variable to
something like \"file://usr/local/doc/HyperSpec/\".")
something like \"file://usr/local/doc/HyperSpec/\"."
:type 'string
:group 'slime)

;;; Added variable for CLHS symbol table. See details below.
;;;
;;; 20011201 Edi Weitz

(defvar common-lisp-hyperspec-symbol-table nil
(defcustom common-lisp-hyperspec-symbol-table nil
"The HyperSpec symbol table file.
If you copy the HyperSpec to your local system, set this variable to
the location of the symbol table which is usually \"Map_Sym.txt\"
or \"Symbol-Table.text\".")
or \"Symbol-Table.text\"."
:type 'string
:group 'slime)

(defvar common-lisp-hyperspec-history nil
"History of symbols looked up in the Common Lisp HyperSpec.")
Expand Down