emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] /srv/bzr/emacs/trunk r111895: * lisp/imenu.el: Comment nit


From: Stefan Monnier
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r111895: * lisp/imenu.el: Comment nitpicks.
Date: Thu, 28 Feb 2013 12:15:08 -0500
User-agent: Bazaar (2.5.0)

------------------------------------------------------------
revno: 111895
committer: Stefan Monnier <address@hidden>
branch nick: trunk
timestamp: Thu 2013-02-28 12:15:08 -0500
message:
  * lisp/imenu.el: Comment nitpicks.
modified:
  lisp/ChangeLog
  lisp/imenu.el
=== modified file 'lisp/ChangeLog'
--- a/lisp/ChangeLog    2013-02-28 16:34:51 +0000
+++ b/lisp/ChangeLog    2013-02-28 17:15:08 +0000
@@ -1,3 +1,7 @@
+2013-02-28  Stefan Monnier  <address@hidden>
+
+       * imenu.el: Comment nitpicks.
+
 2013-02-28  Sam Steingold  <address@hidden>
 
        * vc/diff-mode.el (diff-hunk-file-names): Handle filenames with spaces.

=== modified file 'lisp/imenu.el'
--- a/lisp/imenu.el     2013-02-01 08:23:47 +0000
+++ b/lisp/imenu.el     2013-02-28 17:15:08 +0000
@@ -405,11 +405,11 @@
 ;; Regular expression to find C functions
 (defvar imenu-example--function-name-regexp-c
   (concat
-   "^[a-zA-Z0-9]+[ \t]?"               ; type specs; there can be no
+   "^[a-zA-Z0-9]+[ \t]?"               ; Type specs; there can be no
    "\\([a-zA-Z0-9_*]+[ \t]+\\)?"       ; more than 3 tokens, right?
    "\\([a-zA-Z0-9_*]+[ \t]+\\)?"
-   "\\([*&]+[ \t]*\\)?"                        ; pointer
-   "\\([a-zA-Z0-9_*]+\\)[ \t]*("       ; name
+   "\\([*&]+[ \t]*\\)?"                        ; Pointer.
+   "\\([a-zA-Z0-9_*]+\\)[ \t]*("       ; Name.
    ))
 
 (defun imenu-example--create-c-index (&optional regexp)
@@ -556,7 +556,7 @@
 (defun imenu--truncate-items (menulist)
   "Truncate all strings in MENULIST to `imenu-max-item-length'."
   (mapc (lambda (item)
-         ;; truncate if necessary
+         ;; Truncate if necessary.
          (when (and (numberp imenu-max-item-length)
                     (> (length (car item)) imenu-max-item-length))
            (setcar item (substring (car item) 0 imenu-max-item-length)))
@@ -575,7 +575,7 @@
           (or (not imenu-auto-rescan)
               (and imenu-auto-rescan
                    (> (buffer-size)  imenu-auto-rescan-maxout))))
-      ;; Get the index; truncate if necessary
+      ;; Get the index; truncate if necessary.
       (progn
        (setq imenu--index-alist
              (save-excursion
@@ -687,8 +687,9 @@
             (save-excursion
               (setq name (funcall imenu-extract-index-name-function)))
             (and (stringp name)
-                 ;; [ydi] updated for imenu-use-markers
-                 (push (cons name (if imenu-use-markers (point-marker) 
(point)))
+                 ;; [ydi] Updated for imenu-use-markers.
+                 (push (cons name
+                              (if imenu-use-markers (point-marker) (point)))
                        index-alist)))
           index-alist))
        ;; Use generic expression if possible.
@@ -741,12 +742,12 @@
                 (modify-syntax-entry c (cdr syn) table))
               (car syn))))
     (goto-char (point-max))
-    (unwind-protect                    ; for syntax table
+    (unwind-protect                    ; For syntax table.
        (save-match-data
          (set-syntax-table table)
 
-         ;; map over the elements of imenu-generic-expression
-         ;; (typically functions, variables ...)
+         ;; Map over the elements of imenu-generic-expression
+         ;; (typically functions, variables ...).
          (dolist (pat patterns)
            (let ((menu-title (car pat))
                  (regexp (nth 1 pat))
@@ -1002,7 +1003,7 @@
 function placed in a special index-item."
   (if (or (< position (point-min))
          (> position (point-max)))
-      ;; widen if outside narrowing
+      ;; Widen if outside narrowing.
       (widen))
   (goto-char position))
 


reply via email to

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