diff options
| author | Paul Eggert | 2014-02-10 14:15:54 -0800 |
|---|---|---|
| committer | Paul Eggert | 2014-02-10 14:15:54 -0800 |
| commit | e41fe0d346d78ea5e352a04a943fadadb46231ac (patch) | |
| tree | 19cafac4ea20dcf63fff294cd35856fb4b137593 /src/nsselect.m | |
| parent | bacb3380374de28c8ed982994ebe55b06d43294a (diff) | |
| download | emacs-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/nsselect.m')
| -rw-r--r-- | src/nsselect.m | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nsselect.m b/src/nsselect.m index 4cf81ed4f69..f4713cb5e10 100644 --- a/src/nsselect.m +++ b/src/nsselect.m | |||
| @@ -351,7 +351,7 @@ On Nextstep, FRAME is unused. */) | |||
| 351 | check_window_system (NULL); | 351 | check_window_system (NULL); |
| 352 | CHECK_SYMBOL (selection); | 352 | CHECK_SYMBOL (selection); |
| 353 | if (NILP (value)) | 353 | if (NILP (value)) |
| 354 | error ("selection value may not be nil."); | 354 | error ("Selection value may not be nil"); |
| 355 | pb = ns_symbol_to_pb (selection); | 355 | pb = ns_symbol_to_pb (selection); |
| 356 | if (pb == nil) return Qnil; | 356 | if (pb == nil) return Qnil; |
| 357 | 357 | ||