diff options
Diffstat (limited to 'src/editfns.c')
| -rw-r--r-- | src/editfns.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/src/editfns.c b/src/editfns.c index d7fe1c1c4c4..bb5cc437d9b 100644 --- a/src/editfns.c +++ b/src/editfns.c | |||
| @@ -2361,10 +2361,9 @@ usage: (insert-before-markers-and-inherit &rest ARGS) */) | |||
| 2361 | } | 2361 | } |
| 2362 | 2362 | ||
| 2363 | DEFUN ("insert-char", Finsert_char, Sinsert_char, 1, 3, | 2363 | DEFUN ("insert-char", Finsert_char, Sinsert_char, 1, 3, |
| 2364 | "(list (or (read-char-by-name \"Insert character (Unicode name or hex): \")\ | 2364 | "(list (read-char-by-name \"Insert character (Unicode name or hex): \")\ |
| 2365 | (error \"You did not specify a valid character\"))\ | 2365 | (prefix-numeric-value current-prefix-arg)\ |
| 2366 | (prefix-numeric-value current-prefix-arg)\ | 2366 | t))", |
| 2367 | t))", | ||
| 2368 | doc: /* Insert COUNT copies of CHARACTER. | 2367 | doc: /* Insert COUNT copies of CHARACTER. |
| 2369 | Interactively, prompt for CHARACTER. You can specify CHARACTER in one | 2368 | Interactively, prompt for CHARACTER. You can specify CHARACTER in one |
| 2370 | of these ways: | 2369 | of these ways: |