changeset 107782:2acfb2283cec

* help.el (describe-mode): Return nil (for IELM's sake).
author Juanma Barranquero <lekktu@gmail.com>
date Mon, 05 Apr 2010 12:36:45 +0200
parents da85212a72c2
children 3b312d7aa88e c3217524a4c1
files lisp/ChangeLog lisp/help.el
diffstat 2 files changed, 6 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/ChangeLog	Mon Apr 05 09:35:53 2010 +0200
+++ b/lisp/ChangeLog	Mon Apr 05 12:36:45 2010 +0200
@@ -1,3 +1,7 @@
+2010-04-05  Juanma Barranquero  <lekktu@gmail.com>
+
+	* help.el (describe-mode): Return nil (for IELM's sake).
+
 2010-04-04  John Wiegley  <jwiegley@gmail.com>
 
 	* ido.el (ido-use-virtual-buffers): New variable to indicate
--- a/lisp/help.el	Mon Apr 05 09:35:53 2010 +0200
+++ b/lisp/help.el	Mon Apr 05 12:36:45 2010 +0200
@@ -872,7 +872,8 @@
               (insert (format-mode-line mode nil nil buffer))
               (add-text-properties start (point) '(face bold)))))
 	(princ " mode:\n")
-	(princ (documentation major-mode))))))
+	(princ (documentation major-mode)))))
+  nil)
 
 
 (defun describe-minor-mode (minor-mode)