diff options
| author | Eli Zaretskii | 2023-06-10 06:42:43 -0400 |
|---|---|---|
| committer | Eli Zaretskii | 2023-06-10 06:42:43 -0400 |
| commit | acfd261a61a5bdc00f714aeec74635ac9ef87457 (patch) | |
| tree | cf1b824856df65c05fc2f22079e3b538814c3b84 /src | |
| parent | c777779bf24507e4bf55cfff77e2cc31d8d25ef3 (diff) | |
| parent | 0d8b69e0ad37fe2d801e16a0ccafd8759dd33d02 (diff) | |
| download | emacs-acfd261a61a5bdc00f714aeec74635ac9ef87457.tar.gz emacs-acfd261a61a5bdc00f714aeec74635ac9ef87457.zip | |
Merge from origin/emacs-29
0d8b69e0ad3 Don't ding when completion succeeded
f11e2d36999 ; * admin/git-bisect-start: Update failing commits
9855a3ea744 ; * src/xdisp.c (redisplay_tool_bar): Fix a typo in a com...
f4ee696b887 Improve documentation of color-related functions
90eadc3e234 Revert "* package.el (package--get-activatable-pkg): Pref...
65f355ea0a3 ; Update my mail address
a3a69ec2342 Fix connection-local user options handling (bug#63300)
240803cc3e1 Document 'startup-redirect-eln-cache'
026afb22984 ; * etc/PROBLEMS: Entry about crashes due to anti-virus (...
bcc222251e1 Fix `emacs-lisp-native-compile-and-load' for C-h f (bug#5...
07c8211ca30 Add 'infer' as a keyword to typescript-ts-mode (bug#63880)
dd2d8ff2f5c ; * etc/NEWS: Mention the issue with PGTK on WSL (bug#633...
fa8135f8916 Revert changes to the order in which package descs are lo...
27fcfa2c0a7 ; * etc/NEWS: Improve instructions for grammar libraries.
2a84ab905c8 Handle point in last file-name component in minibuffer co...
05f25238b7b Merge branch 'emacs-29' of git.savannah.gnu.org:/srv/git/...
4bc043ff45d Avoid asking redundant question in emacsbug.el
2eadf328d05 * test/infra/Dockerfile.emba (emacs-base): Don't install ...
583ba1db7ee typescript-ts-mode: Add a rule for function_signature
# Conflicts:
# etc/NEWS
# lisp/minibuffer.el
Diffstat (limited to 'src')
| -rw-r--r-- | src/comp.c | 2 | ||||
| -rw-r--r-- | src/xdisp.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/comp.c b/src/comp.c index 9ff3efedbdd..013ac6358c1 100644 --- a/src/comp.c +++ b/src/comp.c | |||
| @@ -1,7 +1,7 @@ | |||
| 1 | /* Compile Emacs Lisp into native code. | 1 | /* Compile Emacs Lisp into native code. |
| 2 | Copyright (C) 2019-2023 Free Software Foundation, Inc. | 2 | Copyright (C) 2019-2023 Free Software Foundation, Inc. |
| 3 | 3 | ||
| 4 | Author: Andrea Corallo <akrl@sdf.org> | 4 | Author: Andrea Corallo <acorallo@gnu.org> |
| 5 | 5 | ||
| 6 | This file is part of GNU Emacs. | 6 | This file is part of GNU Emacs. |
| 7 | 7 | ||
diff --git a/src/xdisp.c b/src/xdisp.c index 5e25857322f..1830d1965a6 100644 --- a/src/xdisp.c +++ b/src/xdisp.c | |||
| @@ -15367,7 +15367,7 @@ redisplay_tool_bar (struct frame *f) | |||
| 15367 | 0, 0, 0, STRING_MULTIBYTE (f->desired_tool_bar_string)); | 15367 | 0, 0, 0, STRING_MULTIBYTE (f->desired_tool_bar_string)); |
| 15368 | /* FIXME: This should be controlled by a user option. But it | 15368 | /* FIXME: This should be controlled by a user option. But it |
| 15369 | doesn't make sense to have an R2L tool bar if the menu bar cannot | 15369 | doesn't make sense to have an R2L tool bar if the menu bar cannot |
| 15370 | be drawn also R2L, and making the menu bar R2L is tricky due | 15370 | be drawn also R2L, and making the menu bar R2L is tricky due to |
| 15371 | toolkit-specific code that implements it. If an R2L tool bar is | 15371 | toolkit-specific code that implements it. If an R2L tool bar is |
| 15372 | ever supported, display_tool_bar_line should also be augmented to | 15372 | ever supported, display_tool_bar_line should also be augmented to |
| 15373 | call unproduce_glyphs like display_line and display_string | 15373 | call unproduce_glyphs like display_line and display_string |