diff options
| author | Lars Ingebrigtsen | 2020-08-20 16:12:07 +0200 |
|---|---|---|
| committer | Lars Ingebrigtsen | 2020-08-20 16:12:07 +0200 |
| commit | 63ac91a2ec8e03e1b5d1ed68e79de2a0dcc5ec8e (patch) | |
| tree | e0cefd9b0d60d09fb52c459d3d51a380e7d41a67 | |
| parent | 0faa2c95904914731ec68d09fe5fcbbc375db6b1 (diff) | |
| download | emacs-63ac91a2ec8e03e1b5d1ed68e79de2a0dcc5ec8e.tar.gz emacs-63ac91a2ec8e03e1b5d1ed68e79de2a0dcc5ec8e.zip | |
Fix interactive spec of message-beginning-of-line
* lisp/gnus/message.el (message-beginning-of-line): Fix problem
with C-S-a getting translated to C-a in message-mode (bug#39545).
| -rw-r--r-- | lisp/gnus/message.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/gnus/message.el b/lisp/gnus/message.el index 417982731e8..d4b057f593c 100644 --- a/lisp/gnus/message.el +++ b/lisp/gnus/message.el | |||
| @@ -6497,7 +6497,7 @@ When called without a prefix argument, header value spanning | |||
| 6497 | multiple lines is treated as a single line. Otherwise, even if | 6497 | multiple lines is treated as a single line. Otherwise, even if |
| 6498 | N is 1, when point is on a continuation header line, it will be | 6498 | N is 1, when point is on a continuation header line, it will be |
| 6499 | moved to the beginning " | 6499 | moved to the beginning " |
| 6500 | (interactive "p") | 6500 | (interactive "^p") |
| 6501 | (cond | 6501 | (cond |
| 6502 | ;; Go to beginning of header or beginning of line. | 6502 | ;; Go to beginning of header or beginning of line. |
| 6503 | ((and message-beginning-of-line (message-point-in-header-p)) | 6503 | ((and message-beginning-of-line (message-point-in-header-p)) |