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/font.c | |
| 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/font.c')
| -rw-r--r-- | src/font.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/font.c b/src/font.c index fa097c7d7e6..8027de81609 100644 --- a/src/font.c +++ b/src/font.c | |||
| @@ -4785,7 +4785,7 @@ character at index specified by POSITION. */) | |||
| 4785 | if (NILP (string)) | 4785 | if (NILP (string)) |
| 4786 | { | 4786 | { |
| 4787 | if (XBUFFER (w->contents) != current_buffer) | 4787 | if (XBUFFER (w->contents) != current_buffer) |
| 4788 | error ("Specified window is not displaying the current buffer."); | 4788 | error ("Specified window is not displaying the current buffer"); |
| 4789 | CHECK_NUMBER_COERCE_MARKER (position); | 4789 | CHECK_NUMBER_COERCE_MARKER (position); |
| 4790 | if (! (BEGV <= XINT (position) && XINT (position) < ZV)) | 4790 | if (! (BEGV <= XINT (position) && XINT (position) < ZV)) |
| 4791 | args_out_of_range_3 (position, make_number (BEGV), make_number (ZV)); | 4791 | args_out_of_range_3 (position, make_number (BEGV), make_number (ZV)); |