]> git.eshelyaron.com Git - emacs.git/commitdiff
* ielm.el (ielm-is-whitespace-or-comment): Docstring fix.
authorBastien Guerry <bzg@altern.org>
Sat, 16 Feb 2008 16:17:37 +0000 (16:17 +0000)
committerBastien Guerry <bzg@altern.org>
Sat, 16 Feb 2008 16:17:37 +0000 (16:17 +0000)
lisp/ChangeLog
lisp/ielm.el

index 2509add2580ed90449e5deb89b3c8d8d19f94d04..9a1814162a6ec42366f6ffd8b9427bc3bc148c40 100644 (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.
 
        * 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.
index a9255587be51fda1086fec9b0b5edba90f77811d..5e1921e82f452dc197c8710a125d7c3c313f928d 100644 (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)))