diff options
| -rw-r--r-- | lisp/ChangeLog | 3 | ||||
| -rw-r--r-- | lisp/apropos.el | 2 |
2 files changed, 4 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 6e3be6ce9aa..9af5186375e 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,5 +1,8 @@ | |||
| 1 | 2014-10-04 Glenn Morris <rgm@gnu.org> | 1 | 2014-10-04 Glenn Morris <rgm@gnu.org> |
| 2 | 2 | ||
| 3 | * apropos.el (apropos-symbols-internal): | ||
| 4 | Avoid error with non-symbol properties. (Bug#18337#16) | ||
| 5 | |||
| 3 | * startup.el (command-line): | 6 | * startup.el (command-line): |
| 4 | Handle altered user-emacs-directory in load-path warning. (Bug#18512) | 7 | Handle altered user-emacs-directory in load-path warning. (Bug#18512) |
| 5 | 8 | ||
diff --git a/lisp/apropos.el b/lisp/apropos.el index 2cba65e9559..ac76ce26b41 100644 --- a/lisp/apropos.el +++ b/lisp/apropos.el | |||
| @@ -718,7 +718,7 @@ the output includes key-bindings of commands." | |||
| 718 | (setq doc (list (car properties))) | 718 | (setq doc (list (car properties))) |
| 719 | (while (setq properties (cdr (cdr properties))) | 719 | (while (setq properties (cdr (cdr properties))) |
| 720 | (setq doc (cons (car properties) doc))) | 720 | (setq doc (cons (car properties) doc))) |
| 721 | (mapconcat #'symbol-name (nreverse doc) " ")) | 721 | (mapconcat (lambda (p) (format "%s" p)) (nreverse doc) " ")) |
| 722 | (when (get symbol 'widget-type) | 722 | (when (get symbol 'widget-type) |
| 723 | (apropos-documentation-property | 723 | (apropos-documentation-property |
| 724 | symbol 'widget-documentation t)) | 724 | symbol 'widget-documentation t)) |