]> git.eshelyaron.com Git - emacs.git/commitdiff
Rename Man-build-section-alist (bug#28998)
authorBasil L. Contovounesios <contovob@tcd.ie>
Tue, 7 Nov 2017 14:51:37 +0000 (14:51 +0000)
committerNoam Postavsky <npostavs@gmail.com>
Sat, 11 Nov 2017 16:12:28 +0000 (11:12 -0500)
The defsubst Man-build-section-alist builds and returns a list of
strings, so rename it to Man-build-section-list and make it a defun.

* lisp/man.el (Man-build-section-alist): Do it and reduce syntax.
(Man-goto-page):
* lisp/woman.el (woman-find-file): Use it.

lisp/man.el
lisp/woman.el

index f7b1609c929662e15adfc8272343105ffb34414c..798e78bbe768256380336623e4dbe260c83c1654 100644 (file)
@@ -1513,16 +1513,16 @@ The following key bindings are currently in effect in the buffer:
   (set (make-local-variable 'bookmark-make-record-function)
        'Man-bookmark-make-record))
 
-(defsubst Man-build-section-alist ()
+(defun Man-build-section-list ()
   "Build the list of manpage sections."
-  (setq Man--sections nil)
+  (setq Man--sections ())
   (goto-char (point-min))
   (let ((case-fold-search nil))
-    (while (re-search-forward Man-heading-regexp (point-max) t)
+    (while (re-search-forward Man-heading-regexp nil t)
       (let ((section (match-string 1)))
         (unless (member section Man--sections)
           (push section Man--sections)))
-      (forward-line 1)))
+      (forward-line)))
   (setq Man--sections (nreverse Man--sections)))
 
 (defsubst Man-build-references-alist ()
@@ -1803,7 +1803,7 @@ Specify which REFERENCE to use; default is based on word at point."
       (widen)
       (goto-char page-start)
       (narrow-to-region page-start page-end)
-      (Man-build-section-alist)
+      (Man-build-section-list)
       (Man-build-references-alist)
       (goto-char (point-min)))))
 
index 111086e3629a5752310f847e6119885a5214a015..1edf6e34c35953d14a96c02e8149ef30e15fddc1 100644 (file)
@@ -1619,7 +1619,7 @@ decompress the file if appropriate.  See the documentation for the
              (setq woman-buffer-alist
                    (cons (cons file-name bufname) woman-buffer-alist)
                    woman-buffer-number 0)))))
-  (Man-build-section-alist)
+  (Man-build-section-list)
   (Man-build-references-alist)
   (goto-char (point-min)))