aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog5
-rw-r--r--src/editfns.c7
2 files changed, 9 insertions, 3 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 218dd425a2d..8e1e422d154 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,8 @@
12012-12-08 Chong Yidong <cyd@gnu.org>
2
3 * editfns.c (Finsert_char): Make the error message more
4 informative (Bug#12992).
5
12012-12-08 Paul Eggert <eggert@cs.ucla.edu> 62012-12-08 Paul Eggert <eggert@cs.ucla.edu>
2 7
3 Simplify get_lim_data. 8 Simplify get_lim_data.
diff --git a/src/editfns.c b/src/editfns.c
index d60f417e561..ffb9a38909b 100644
--- a/src/editfns.c
+++ b/src/editfns.c
@@ -2351,9 +2351,10 @@ usage: (insert-before-markers-and-inherit &rest ARGS) */)
2351} 2351}
2352 2352
2353DEFUN ("insert-char", Finsert_char, Sinsert_char, 1, 3, 2353DEFUN ("insert-char", Finsert_char, Sinsert_char, 1, 3,
2354 "(list (read-char-by-name \"Insert character (Unicode name or hex): \")\ 2354 "(list (or (read-char-by-name \"Insert character (Unicode name or hex): \")\
2355 (prefix-numeric-value current-prefix-arg)\ 2355 (error \"You did not specify a valid character\"))\
2356 t))", 2356 (prefix-numeric-value current-prefix-arg)\
2357 t))",
2357 doc: /* Insert COUNT copies of CHARACTER. 2358 doc: /* Insert COUNT copies of CHARACTER.
2358Interactively, prompt for CHARACTER. You can specify CHARACTER in one 2359Interactively, prompt for CHARACTER. You can specify CHARACTER in one
2359of these ways: 2360of these ways: