diff options
| author | Eli Zaretskii | 2025-01-12 08:24:39 +0200 |
|---|---|---|
| committer | Eli Zaretskii | 2025-02-28 09:54:10 +0200 |
| commit | 0d89aa6b6c11cb97a0df78dd31b8fa12b7710f82 (patch) | |
| tree | 64ab4f97d1d8f67984e9f12ae3706415a169ed1e /src | |
| parent | b3181a807124d5c6226fdcf1e42bf4b6fcdc4ad2 (diff) | |
| download | emacs-0d89aa6b6c11cb97a0df78dd31b8fa12b7710f82.tar.gz emacs-0d89aa6b6c11cb97a0df78dd31b8fa12b7710f82.zip | |
; * src/keymap.c: Fix last change (bug#75219).
(cherry picked from commit 412c1a4f0e1df8c82bd94f02e21c1ef62b3d53d5)
Diffstat (limited to 'src')
| -rw-r--r-- | src/keymap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/keymap.c b/src/keymap.c index 634c4e33bbd..6b266bb5736 100644 --- a/src/keymap.c +++ b/src/keymap.c | |||
| @@ -1740,7 +1740,6 @@ like in the respective argument of `key-binding'. */) | |||
| 1740 | if (CONSP (string) && STRINGP (XCAR (string))) | 1740 | if (CONSP (string) && STRINGP (XCAR (string))) |
| 1741 | { | 1741 | { |
| 1742 | Lisp_Object pos = XCDR (string); | 1742 | Lisp_Object pos = XCDR (string); |
| 1743 | Lisp_Object pos_area = POSN_POSN (position); | ||
| 1744 | string = XCAR (string); | 1743 | string = XCAR (string); |
| 1745 | if (FIXNUMP (pos) | 1744 | if (FIXNUMP (pos) |
| 1746 | && XFIXNUM (pos) >= 0 | 1745 | && XFIXNUM (pos) >= 0 |
| @@ -1748,6 +1747,7 @@ like in the respective argument of `key-binding'. */) | |||
| 1748 | { | 1747 | { |
| 1749 | Lisp_Object map = Fget_text_property (pos, Qlocal_map, | 1748 | Lisp_Object map = Fget_text_property (pos, Qlocal_map, |
| 1750 | string); | 1749 | string); |
| 1750 | Lisp_Object pos_area = POSN_POSN (position); | ||
| 1751 | /* For clicks on mode line or header line, override | 1751 | /* For clicks on mode line or header line, override |
| 1752 | the maps we found at POSITION unconditionally, even | 1752 | the maps we found at POSITION unconditionally, even |
| 1753 | if the corresponding properties of the mode- or | 1753 | if the corresponding properties of the mode- or |