aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/ChangeLog5
-rw-r--r--lisp/emacs-lisp/eieio-opt.el2
2 files changed, 6 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index c4df237a668..5ec35ffd14f 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
12014-05-14 Nicolas Richard <theonewiththeevillook@yahoo.fr>
2
3 * emacs-lisp/eieio-opt.el (eieio-help-class): Correctly deal with
4 methods which do not have a doc string. (Bug#17490)
5
12014-05-14 Stephen Berman <stephen.berman@gmx.net> 62014-05-14 Stephen Berman <stephen.berman@gmx.net>
2 Stefan Monnier <monnier@iro.umontreal.ca> 7 Stefan Monnier <monnier@iro.umontreal.ca>
3 8
diff --git a/lisp/emacs-lisp/eieio-opt.el b/lisp/emacs-lisp/eieio-opt.el
index a502901a469..ca9b91bed58 100644
--- a/lisp/emacs-lisp/eieio-opt.el
+++ b/lisp/emacs-lisp/eieio-opt.el
@@ -141,7 +141,7 @@ If CLASS is actually an object, then also display current values of that object.
141 (insert " " (aref type counter) " " 141 (insert " " (aref type counter) " "
142 (prin1-to-string (car cur) (current-buffer)) 142 (prin1-to-string (car cur) (current-buffer))
143 "\n" 143 "\n"
144 (cdr cur))) 144 (or (cdr cur) "")))
145 (setq counter (1+ counter)))) 145 (setq counter (1+ counter))))
146 (insert "\n\n") 146 (insert "\n\n")
147 (setq methods (cdr methods)))))) 147 (setq methods (cdr methods))))))