1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-02-10 01:34:36 -08:00

* ielm.el (ielm-is-whitespace-or-comment): Docstring fix.

This commit is contained in:
Bastien Guerry 2008-02-16 16:17:37 +00:00
parent bae9f9e311
commit 2ef180f7e3
2 changed files with 12 additions and 1 deletions

View file

@ -1,3 +1,8 @@
2008-02-16 Lawrence Mitchell <wence@gmx.li>
* ielm.el (ielm-is-whitespace-or-comment): Docstring
fix.
2008-02-16 Dan Nicolaescu <dann@ics.uci.edu>
* vc.el (vc-annotate): Add new argument.
@ -36,6 +41,12 @@
* bindings.el (mode-line-mule-info): Make the tooltips more explicit.
2008-02-15 Lawrence Mitchell <wence@gmx.li>
* ielm.el (ielm-is-whitespace): Remove.
(ielm-is-whitespace-or-comment): New function.
(ielm-eval-input): Use it.
2008-02-15 Jason Rumney <jasonr@gnu.org>
* term/mac-win.el: Fix coding tag.

View file

@ -301,7 +301,7 @@ simply inserts a newline."
;;; Utility functions
(defun ielm-is-whitespace-or-comment (string)
"Return non-nil if STRING is all whitespace."
"Return non-nil if STRING is all whitespace or a comment."
(or (string= string "")
(string-match "\\`[ \t\n]*\\(?:;.*\\)*\\'" string)))