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
1b6dbfeb
Commit
1b6dbfeb
authored
Dec 08, 2012
by
Chong Yidong
Browse files
* src/editfns.c (Finsert_char): Make the error message more informative.
Fixes: debbugs:12992
parent
63999a7d
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
3 deletions
+9
-3
src/ChangeLog
src/ChangeLog
+5
-0
src/editfns.c
src/editfns.c
+4
-3
No files found.
src/ChangeLog
View file @
1b6dbfeb
2012-12-08 Chong Yidong <cyd@gnu.org>
* editfns.c (Finsert_char): Make the error message more
informative (Bug#12992).
2012-12-08 Paul Eggert <eggert@cs.ucla.edu>
Simplify get_lim_data.
...
...
src/editfns.c
View file @
1b6dbfeb
...
...
@@ -2351,9 +2351,10 @@ usage: (insert-before-markers-and-inherit &rest ARGS) */)
}
DEFUN ("insert-char", Finsert_char, Sinsert_char, 1, 3,
"(list (read-char-by-name \"Insert character (Unicode name or hex): \")\
(prefix-numeric-value current-prefix-arg)\
t))",
"(list (or (read-char-by-name \"Insert character (Unicode name or hex): \")\
(error \"You did not specify a valid character\"))\
(prefix-numeric-value current-prefix-arg)\
t))",
doc: /* Insert COUNT copies of CHARACTER.
Interactively, prompt for CHARACTER. You can specify CHARACTER in one
of these ways:
...
...
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