diff options
| author | Stefan Kangas | 2024-12-18 22:06:16 +0100 |
|---|---|---|
| committer | Stefan Kangas | 2024-12-18 22:06:16 +0100 |
| commit | c2eda4745be58f296b647b38d101c30027208d16 (patch) | |
| tree | d67e07b2abfb85eb42ba6d77d538bb9db13924e6 | |
| parent | 0bcff166d6286612617335eb962c0a529384fb79 (diff) | |
| download | emacs-c2eda4745be58f296b647b38d101c30027208d16.tar.gz emacs-c2eda4745be58f296b647b38d101c30027208d16.zip | |
; Fix capitalization
| -rw-r--r-- | lisp/tty-tip.el | 2 | ||||
| -rw-r--r-- | src/frame.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/lisp/tty-tip.el b/lisp/tty-tip.el index 4414d93d030..102b5bede57 100644 --- a/lisp/tty-tip.el +++ b/lisp/tty-tip.el | |||
| @@ -194,7 +194,7 @@ | |||
| 194 | 194 | ||
| 195 | ;;;###autoload | 195 | ;;;###autoload |
| 196 | (define-minor-mode tty-tip-mode | 196 | (define-minor-mode tty-tip-mode |
| 197 | "Global minor mode for displaying help in tty child frames." | 197 | "Global minor mode for displaying help in TTY child frames." |
| 198 | :global t :group 'help | 198 | :global t :group 'help |
| 199 | (unless (display-graphic-p) | 199 | (unless (display-graphic-p) |
| 200 | (cond (tty-tip-mode | 200 | (cond (tty-tip-mode |
diff --git a/src/frame.c b/src/frame.c index 6552567386e..9423f36ce3e 100644 --- a/src/frame.c +++ b/src/frame.c | |||
| @@ -1790,7 +1790,7 @@ do_switch_frame (Lisp_Object frame, int track, int for_deletion, Lisp_Object nor | |||
| 1790 | the one you're actually typing in. */ | 1790 | the one you're actually typing in. */ |
| 1791 | 1791 | ||
| 1792 | /* FIXME/tty: I don't understand this. (The comment above is from | 1792 | /* FIXME/tty: I don't understand this. (The comment above is from |
| 1793 | Jim BLandy 1993 BTW, and the frame_ancestor_p from 2017.) | 1793 | Jim Blandy 1993 BTW, and the frame_ancestor_p from 2017.) |
| 1794 | 1794 | ||
| 1795 | Setting the last event frame to nil leads to switch-frame events | 1795 | Setting the last event frame to nil leads to switch-frame events |
| 1796 | being generated even if they normally wouldn't be because the frame | 1796 | being generated even if they normally wouldn't be because the frame |