]> git.eshelyaron.com Git - emacs.git/commitdiff
* help.el (describe-mode): Return nil (for IELM's sake).
authorJuanma Barranquero <lekktu@gmail.com>
Mon, 5 Apr 2010 10:36:45 +0000 (12:36 +0200)
committerJuanma Barranquero <lekktu@gmail.com>
Mon, 5 Apr 2010 10:36:45 +0000 (12:36 +0200)
lisp/ChangeLog
lisp/help.el

index 6b4bc0f37853d0c2cd5f46defcff028c875a1b1a..0d68b49a83789bd2f444259be1e2e2934240fe0b 100644 (file)
@@ -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
index 9fb993e7173494cde0ffbdcd5d1fd045e66b9c50..bde2bf2e9aedfb58a3726dcce18fc7b3d639ffb6 100644 (file)
@@ -872,7 +872,8 @@ whose documentation describes the minor mode."
               (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)