emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] /srv/bzr/emacs/emacs-24 r107845: * emacs-lisp/tabulated-li


From: Chong Yidong
Subject: [Emacs-diffs] /srv/bzr/emacs/emacs-24 r107845: * emacs-lisp/tabulated-list.el (tabulated-list-print): Fix typos.
Date: Tue, 17 Apr 2012 23:07:21 +0800
User-agent: Bazaar (2.3.1)

------------------------------------------------------------
revno: 107845
committer: Chong Yidong <address@hidden>
branch nick: emacs-24
timestamp: Tue 2012-04-17 23:07:21 +0800
message:
  * emacs-lisp/tabulated-list.el (tabulated-list-print): Fix typos.
modified:
  lisp/ChangeLog
  lisp/emacs-lisp/tabulated-list.el
=== modified file 'lisp/ChangeLog'
--- a/lisp/ChangeLog    2012-04-16 20:01:44 +0000
+++ b/lisp/ChangeLog    2012-04-17 15:07:21 +0000
@@ -1,3 +1,7 @@
+2012-04-17  Chong Yidong  <address@hidden>
+
+       * emacs-lisp/tabulated-list.el (tabulated-list-print): Fix typos.
+
 2012-04-16  Alan Mackenzie  <address@hidden>
 
        Ensure searching for keywords is case sensitive.

=== modified file 'lisp/emacs-lisp/tabulated-list.el'
--- a/lisp/emacs-lisp/tabulated-list.el 2012-03-20 15:44:45 +0000
+++ b/lisp/emacs-lisp/tabulated-list.el 2012-04-17 15:07:21 +0000
@@ -215,7 +215,7 @@
 Optional argument REMEMBER-POS, if non-nil, means to move point
 to the entry with the same ID element as the current line."
   (let ((inhibit-read-only t)
-       (entries (if (functionp 'tabulated-list-entries)
+       (entries (if (functionp tabulated-list-entries)
                     (funcall tabulated-list-entries)
                   tabulated-list-entries))
        entry-id saved-pt saved-col)
@@ -246,7 +246,7 @@
          (setq entries (sort entries sorter))
          (if (cdr tabulated-list-sort-key)
              (setq entries (nreverse entries)))
-         (unless (functionp 'tabulated-list-entries)
+         (unless (functionp tabulated-list-entries)
            (setq tabulated-list-entries entries)))))
     ;; Print the resulting list.
     (dolist (elt entries)


reply via email to

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