emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[elpa] externals/clhs 74286dc 01/25: initial version


From: Sam Steingold
Subject: [elpa] externals/clhs 74286dc 01/25: initial version
Date: Tue, 27 Apr 2021 20:38:51 -0400 (EDT)

branch: externals/clhs
commit 74286dcf0bd69e2378305ecb398a2a3c88e58e47
Author: Sam Steingold <sds@gnu.org>
Commit: Sam Steingold <sds@gnu.org>

    initial version
---
 clhs.el | 130 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 130 insertions(+)

diff --git a/clhs.el b/clhs.el
new file mode 100644
index 0000000..fd56efe
--- /dev/null
+++ b/clhs.el
@@ -0,0 +1,130 @@
+;;; clhs.el -- access the Common Lisp HyperSpec (CLHS)
+
+;;; this works with both
+;;; * the "long file name" version released by Harlequin and available
+;;; at the ALU (Association of Lisp Users) web site as
+;;; <http://www.lisp.org/HyperSpec/> and
+;;; * the "8.3 file name" version released later by Xanalys available at
+;;; <http://www.xanalys.com/software_tools/reference/HyperSpec/Front/>
+;;; and downloadable as
+;;; 
<http://www.xanalys.com/software_tools/reference/HyperSpec/HyperSpec-6-0.tar.gz>
+;;; This is accomplished by not hard-wiring the symbol->file table
+;;; but reading the Data/<map> file instead
+
+;;; Copyright (C) 2002 Sam Steingold <sds@gnu.org>
+;;; Keywords: lisp, common lisp, emacs
+;;; released under the GNU GPL <http://www.gnu.org/copyleft/gpl.html>
+;;; as a part of GNU CLISP <http://clisp.cons.org>, <http://www.clisp.org>
+
+;;; Commentary:
+
+;; Kent Pitman and the Harlequin Group (later Xanalys) have made the
+;; text of the "American National Standard for Information Technology --
+;; Programming Language -- Common Lisp", ANSI X3.226-1994 available on
+;; the WWW, in the form of the Common Lisp HyperSpec.  This package
+;; makes it convenient to peruse this documentation from within Emacs.
+
+;; This is inspired by the Erik Naggum's version of 1997.
+
+;;; Code:
+
+(eval-when-compile (require 'cl)) ; push
+(require 'browse-url)
+(require 'thingatpt)
+(require 'url)
+
+(defcustom common-lisp-hyperspec-root "http://www.lisp.org/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/\"."
+  :group 'lisp
+  :type 'string)
+
+(defvar clhs-history nil
+  "History of symbols looked up in the Common Lisp HyperSpec so far.")
+
+(defvar clhs-symbols nil)
+
+(defun clhs-table-buffer (&optional root)
+  (unless root (setq root common-lisp-hyperspec-root))
+  (if (string-match "^file:/" root)
+      (with-current-buffer (get-buffer-create " *clhs-tmp-buf*")
+        (insert-file-contents-literally
+         (let* ((d (concat (substring root 5) "/Data/"))
+                (f (concat d "Map_Sym.txt")))
+           (if (file-exists-p f) f
+             (setq f (concat d "Symbol-Table.text"))
+             (if (file-exists-p f) f
+               (error "no symbol table at ~s" root))))
+         nil nil nil t)
+        (goto-char 0)
+        (current-buffer))
+    (let* ((d (concat root "/Data/"))
+           (f (concat d "Map_Sym.txt")))
+      (set-buffer (url-retrieve-synchronously f))
+      (goto-char 0)
+      (unless (looking-at "^HTTP/.*200 OK$")
+        (kill-buffer (current-buffer))
+        (setq f (concat d "Symbol-Table.text"))
+        (set-buffer (url-retrieve-synchronously f))
+        (goto-char 0)
+        (unless (looking-at "^HTTP/.*200 OK$")
+          (kill-buffer (current-buffer))
+          (error "no symbol table at ~s" root)))
+      ;; skip to the first symbol
+      (search-forward "\n\n")
+      (current-buffer))))
+
+(defun clhs-read-symbols ()
+  "read `clhs-symbols' from the current position in the current buffer"
+  (while (not (eobp))
+    (puthash (buffer-substring-no-properties ; symbol
+              (line-beginning-position) (line-end-position))
+             (progn (forward-line 1) ; file name
+                    (buffer-substring-no-properties ; strip "../"
+                     (+ 3 (line-beginning-position)) (line-end-position)))
+             clhs-symbols)
+    (forward-line 1)))
+
+(defun clhs-symbols ()
+  "Get `clhs-symbols' from `common-lisp-hyperspec-root'."
+  (if (and clhs-symbols (not (= 0 (hash-table-count clhs-symbols))))
+      clhs-symbols
+    (with-current-buffer (clhs-table-buffer)
+      (unless clhs-symbols
+        (setq clhs-symbols (make-hash-table :test 'equal :size 1031)))
+      (clhs-read-symbols)
+      (kill-buffer (current-buffer))
+      clhs-symbols)))
+
+(defun hash-table-complete (string table how)
+  "This makes it possible to use hash-tables with `completing-read'.
+Actually, `completing-read' should accept hash-tables natively,
+but it does not - go ahead and report this as a bug."
+  (let ((res nil) (st (upcase string)) (len (length string)))
+    (maphash (lambda (key val)
+               (when (and (<= len (length key))
+                          (string= st (substring key 0 len)))
+                 (push key res)))
+             table)
+    (if how res                 ; `all-completions'
+      (if (cdr res) (try-completion st (mapcar #'list res))
+        (if (string= st (car res)) t (car res))))))
+
+;;;###autoload
+(defun common-lisp-hyperspec (symbol-name)
+  "Browse the Common Lisp HyperSpec documentation for SYMBOL-NAME.
+Finds the HyperSpec at `common-lisp-hyperspec-root'."
+  (interactive (list (let ((sym (thing-at-point 'symbol)))
+                       (completing-read
+                        "Look-up symbol in the Common Lisp HyperSpec: "
+                        #'hash-table-complete (clhs-symbols)
+                        t sym 'clhs-history))))
+  (unless (= ?/ (aref common-lisp-hyperspec-root
+                      (1- (length common-lisp-hyperspec-root))))
+    (setq common-lisp-hyperspec-root
+          (concat common-lisp-hyperspec-root "/")))
+  (browse-url (concat common-lisp-hyperspec-root
+                      (gethash (upcase symbol-name) (clhs-symbols)))))
+
+(provide 'clhs)



reply via email to

[Prev in Thread] Current Thread [Next in Thread]