diff options
author | Chong Yidong <cyd@gnu.org> | 2012-04-17 23:07:21 +0800 |
---|---|---|
committer | Chong Yidong <cyd@gnu.org> | 2012-04-17 23:07:21 +0800 |
commit | 2c070447bfad37262d292fe130db7db22da822fb (patch) | |
tree | 082025b709bd1081ce01a62696c06cc78e24ca57 /lisp/emacs-lisp | |
parent | 21ffa320b1ff22f00a927261348517acd37ab790 (diff) | |
download | emacs-2c070447bfad37262d292fe130db7db22da822fb.tar.gz emacs-2c070447bfad37262d292fe130db7db22da822fb.tar.bz2 emacs-2c070447bfad37262d292fe130db7db22da822fb.zip |
* emacs-lisp/tabulated-list.el (tabulated-list-print): Fix typos.
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r-- | lisp/emacs-lisp/tabulated-list.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/emacs-lisp/tabulated-list.el b/lisp/emacs-lisp/tabulated-list.el index f17b12da6a0..9439fba2b86 100644 --- a/lisp/emacs-lisp/tabulated-list.el +++ b/lisp/emacs-lisp/tabulated-list.el @@ -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) |