aboutsummaryrefslogtreecommitdiffstats
path: root/src/cmds.c
diff options
context:
space:
mode:
authorPaul Eggert2014-02-10 14:15:54 -0800
committerPaul Eggert2014-02-10 14:15:54 -0800
commite41fe0d346d78ea5e352a04a943fadadb46231ac (patch)
tree19cafac4ea20dcf63fff294cd35856fb4b137593 /src/cmds.c
parentbacb3380374de28c8ed982994ebe55b06d43294a (diff)
downloademacs-e41fe0d346d78ea5e352a04a943fadadb46231ac.tar.gz
emacs-e41fe0d346d78ea5e352a04a943fadadb46231ac.zip
Avoid "." at end of error diagnostics.
* cmds.c (Fself_insert_command): Reword and avoid "." at end. * font.c (Ffont_at): * nsfns.m (ns_display_info_for_name): * nsselect.m (Fx_own_selection_internal): * nsterm.m (performDragOperation:): Remove "." from end of diagnostic.
Diffstat (limited to 'src/cmds.c')
-rw-r--r--src/cmds.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/cmds.c b/src/cmds.c
index 03ce54c8ee4..fdc3fcac281 100644
--- a/src/cmds.c
+++ b/src/cmds.c
@@ -280,8 +280,7 @@ At the end, it runs `post-self-insert-hook'. */)
280 CHECK_NUMBER (n); 280 CHECK_NUMBER (n);
281 281
282 if (XFASTINT (n) < 1) 282 if (XFASTINT (n) < 1)
283 error ("Repetition argument is %"pI"d, but must be higher than 0.", 283 error ("Nonpositive repetition argument %"pI"d", XFASTINT (n));
284 XFASTINT (n));
285 284
286 if (!EQ (Vthis_command, KVAR (current_kboard, Vlast_command))) 285 if (!EQ (Vthis_command, KVAR (current_kboard, Vlast_command)))
287 nonundocount = 0; 286 nonundocount = 0;