diff options
| author | Stefan Kangas | 2024-07-16 04:53:38 +0200 |
|---|---|---|
| committer | Stefan Kangas | 2024-07-16 10:08:15 +0200 |
| commit | 970409916e0dff9cd4d542f16f7d570149bdeeb1 (patch) | |
| tree | a8134301de1080f3808ae9a28740ca7ab70a6874 /src/window.c | |
| parent | 06ce99b76a8e5823f003f4e0dee945d97d0271ea (diff) | |
| download | emacs-970409916e0dff9cd4d542f16f7d570149bdeeb1.tar.gz emacs-970409916e0dff9cd4d542f16f7d570149bdeeb1.zip | |
Make error messages adhere to our standards
* src/cygw32.c (chdir_to_default_directory):
* src/fns.c (secure_hash):
* src/keyboard.c (Finternal_handle_focus_in):
* src/keymap.c (store_in_keymap):
* src/pgtkfns.c (pgtk_set_scroll_bar_foreground)
(pgtk_set_scroll_bar_background, Fx_export_frames)
(Fpgtk_set_monitor_scale_factor, pgtk_get_defaults_value)
(pgtk_set_defaults_value, Fpgtk_print_frames_dialog)
(pgtk_get_monitor_scale_factor):
* src/pgtkterm.c (pgtk_set_parent_frame):
* src/process.c (network_interface_info, send_process):
* src/w32.c (w32_read_registry):
* src/w32fns.c (Fw32_read_registry):
* src/window.c (Frecenter):
* src/xfns.c (Fx_export_frames, Fx_print_frames_dialog)
(x_set_mouse_color): Make 'error' message strings follow our guidelines.
More specifically, they should not end in a period, and normally also be
capitalized. See '(elisp) Programming Tips'.
Diffstat (limited to 'src/window.c')
| -rw-r--r-- | src/window.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/window.c b/src/window.c index ff28bac5306..4bb36b6733a 100644 --- a/src/window.c +++ b/src/window.c | |||
| @@ -6711,7 +6711,7 @@ and redisplay normally--don't erase and redraw the frame. */) | |||
| 6711 | https://lists.gnu.org/r/emacs-devel/2014-06/msg00053.html, | 6711 | https://lists.gnu.org/r/emacs-devel/2014-06/msg00053.html, |
| 6712 | https://lists.gnu.org/r/emacs-devel/2014-06/msg00094.html. */ | 6712 | https://lists.gnu.org/r/emacs-devel/2014-06/msg00094.html. */ |
| 6713 | if (buf != current_buffer) | 6713 | if (buf != current_buffer) |
| 6714 | error ("`recenter'ing a window that does not display current-buffer."); | 6714 | error ("`recenter'ing a window that does not display current-buffer"); |
| 6715 | 6715 | ||
| 6716 | /* If redisplay is suppressed due to an error, try again. */ | 6716 | /* If redisplay is suppressed due to an error, try again. */ |
| 6717 | buf->display_error_modiff = 0; | 6717 | buf->display_error_modiff = 0; |