* emacs-lisp/tabulated-list.el (tabulated-list-print): Fix typos.
authorChong Yidong <cyd@gnu.org>
Tue, 17 Apr 2012 15:07:21 +0000 (23:07 +0800)
committerChong Yidong <cyd@gnu.org>
Tue, 17 Apr 2012 15:07:21 +0000 (23:07 +0800)
lisp/ChangeLog
lisp/emacs-lisp/tabulated-list.el

index 06a794a..026b998 100644 (file)
@@ -1,3 +1,7 @@
+2012-04-17  Chong Yidong  <cyd@gnu.org>
+
+       * emacs-lisp/tabulated-list.el (tabulated-list-print): Fix typos.
+
 2012-04-16  Alan Mackenzie  <acm@muc.de>
 
        Ensure searching for keywords is case sensitive.
index f17b12d..9439fba 100644 (file)
@@ -215,7 +215,7 @@ buffer and inserts the entries with `tabulated-list-printer'.
 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 @@ to the entry with the same ID element as the current line."
          (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)