diff options
| author | Glenn Morris | 2020-05-16 10:29:14 -0700 |
|---|---|---|
| committer | Glenn Morris | 2020-05-16 10:29:14 -0700 |
| commit | 788c2480f448e97773172f3e840976dbcdc3e6c8 (patch) | |
| tree | 60d3425a657e682da7790fc5f0d2548995721ef2 /src | |
| parent | a67415a71a1be5419547ac5e2abe51bc6bb37f1d (diff) | |
| parent | b4937f64cd97ff6bf93538987c014f8ea8ff9d34 (diff) | |
| download | emacs-788c2480f448e97773172f3e840976dbcdc3e6c8.tar.gz emacs-788c2480f448e97773172f3e840976dbcdc3e6c8.zip | |
Merge from origin/emacs-27
b4937f64cd (origin/emacs-27) Improve documentation of manually instal...
efd4e973a4 Reflect the emacs-devel ELPA/MELPA dispute in FAQ
28541674cd Consider face inheritance when checking region face backgr...
e75f6be6cc Fix dired default file operation (bug#41261)
406fb0746c Fix documentation related to 'command-switch-alist'.
747e0a2523 Improve ediff readability in misterioso theme (Bug#41221)
48830c73e7 Fix a crash in handle_display_spec
a37290a6f9 In x_hide_tip reset tip_last_frame for GTK+ tooltips only ...
3d81995692 Fix docstring of flymake-make-diagnostic (bug#40351)
632aa9d57a Go back to “Bahá’í”
e2406ff60f * lisp/dired.el (dired-toggle-marks): Doc fix. (Bug#41097)
# Conflicts:
# doc/emacs/building.texi
Diffstat (limited to 'src')
| -rw-r--r-- | src/xdisp.c | 2 | ||||
| -rw-r--r-- | src/xfns.c | 8 |
2 files changed, 6 insertions, 4 deletions
diff --git a/src/xdisp.c b/src/xdisp.c index d65bb388699..cf15f579b58 100644 --- a/src/xdisp.c +++ b/src/xdisp.c | |||
| @@ -5120,7 +5120,7 @@ handle_display_spec (struct it *it, Lisp_Object spec, Lisp_Object object, | |||
| 5120 | if (CONSP (spec) && EQ (XCAR (spec), Qdisable_eval)) | 5120 | if (CONSP (spec) && EQ (XCAR (spec), Qdisable_eval)) |
| 5121 | { | 5121 | { |
| 5122 | enable_eval = false; | 5122 | enable_eval = false; |
| 5123 | spec = XCAR (XCDR (spec)); | 5123 | spec = CONSP (XCDR (spec)) ? XCAR (XCDR (spec)) : Qnil; |
| 5124 | } | 5124 | } |
| 5125 | 5125 | ||
| 5126 | if (CONSP (spec) | 5126 | if (CONSP (spec) |
diff --git a/src/xfns.c b/src/xfns.c index 1f381e2a8b0..2ab5080d977 100644 --- a/src/xfns.c +++ b/src/xfns.c | |||
| @@ -6738,9 +6738,11 @@ x_hide_tip (bool delete) | |||
| 6738 | } | 6738 | } |
| 6739 | } | 6739 | } |
| 6740 | 6740 | ||
| 6741 | /* Reset tip_last_frame, it will be reassigned when showing the | 6741 | /* When using GTK+ system tooltips (compare Bug#41200) reset |
| 6742 | next GTK+ system tooltip. */ | 6742 | tip_last_frame. It will be reassigned when showing the next |
| 6743 | tip_last_frame = Qnil; | 6743 | GTK+ system tooltip. */ |
| 6744 | if (x_gtk_use_system_tooltips) | ||
| 6745 | tip_last_frame = Qnil; | ||
| 6744 | 6746 | ||
| 6745 | /* Now look whether there's an Emacs tip around. */ | 6747 | /* Now look whether there's an Emacs tip around. */ |
| 6746 | if (FRAMEP (tip_frame)) | 6748 | if (FRAMEP (tip_frame)) |