Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
2ef180f7
Commit
2ef180f7
authored
Feb 16, 2008
by
Bastien Guerry
Browse files
* ielm.el (ielm-is-whitespace-or-comment): Docstring fix.
parent
bae9f9e3
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
1 deletion
+12
-1
lisp/ChangeLog
lisp/ChangeLog
+11
-0
lisp/ielm.el
lisp/ielm.el
+1
-1
No files found.
lisp/ChangeLog
View file @
2ef180f7
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.
...
...
lisp/ielm.el
View file @
2ef180f7
...
...
@@ -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
)))
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment