[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Emacs-diffs] emacs-24 r117114: Deal with EIEIO methods without doc stri
From: |
David Engster |
Subject: |
[Emacs-diffs] emacs-24 r117114: Deal with EIEIO methods without doc strings (Bug#17490). |
Date: |
Wed, 14 May 2014 20:43:33 +0000 |
User-agent: |
Bazaar (2.6b2) |
------------------------------------------------------------
revno: 117114
revision-id: address@hidden
parent: address@hidden
fixes bug: http://debbugs.gnu.org/17490
author: Nicolas Richard <address@hidden>
committer: David Engster <address@hidden>
branch nick: emacs-24
timestamp: Wed 2014-05-14 22:41:53 +0200
message:
Deal with EIEIO methods without doc strings (Bug#17490).
* emacs-lisp/eieio-opt.el (eieio-help-class): Correctly deal with
methods which do not have a doc string. (Bug#17490)
modified:
lisp/ChangeLog changelog-20091113204419-o5vbwnq5f7feedwu-1432
lisp/emacs-lisp/eieio-opt.el
eieioopt.el-20091113204419-o5vbwnq5f7feedwu-10971
=== modified file 'lisp/ChangeLog'
--- a/lisp/ChangeLog 2014-05-14 16:21:13 +0000
+++ b/lisp/ChangeLog 2014-05-14 20:41:53 +0000
@@ -1,3 +1,8 @@
+2014-05-14 Nicolas Richard <address@hidden>
+
+ * emacs-lisp/eieio-opt.el (eieio-help-class): Correctly deal with
+ methods which do not have a doc string. (Bug#17490)
+
2014-05-14 Stephen Berman <address@hidden>
Stefan Monnier <address@hidden>
=== modified file 'lisp/emacs-lisp/eieio-opt.el'
--- a/lisp/emacs-lisp/eieio-opt.el 2014-01-30 04:13:00 +0000
+++ b/lisp/emacs-lisp/eieio-opt.el 2014-05-14 20:41:53 +0000
@@ -141,7 +141,7 @@
(insert " " (aref type counter) " "
(prin1-to-string (car cur) (current-buffer))
"\n"
- (cdr cur)))
+ (or (cdr cur) "")))
(setq counter (1+ counter))))
(insert "\n\n")
(setq methods (cdr methods))))))
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [Emacs-diffs] emacs-24 r117114: Deal with EIEIO methods without doc strings (Bug#17490).,
David Engster <=