GNU bug report logs -
#3448
23.0.93; Documentation mismatch in Message mode keybindings
Previous Next
Reported by: Ryan Yeske <rcyeske <at> gmail.com>
Date: Tue, 2 Jun 2009 02:25:05 UTC
Severity: normal
Done: Glenn Morris <rgm+emacsbugs <at> gnu.org>
Bug is archived. No further changes may be made.
To add a comment to this bug, you must first unarchive it, by sending
a message to control AT debbugs.gnu.org, with unarchive 3448 in the body.
You can then email your comments to 3448 AT debbugs.gnu.org in the normal way.
Toggle the display of automated, internal messages from the tracker.
Report forwarded
to
bug-submit-list <at> lists.donarmstrong.com, Emacs Bugs <bug-gnu-emacs <at> gnu.org>
:
bug#3448
; Package
emacs
.
(Tue, 02 Jun 2009 02:25:05 GMT)
Full text and
rfc822 format available.
Acknowledgement sent
to
Ryan Yeske <rcyeske <at> gmail.com>
:
New bug report received and forwarded. Copy sent to
Emacs Bugs <bug-gnu-emacs <at> gnu.org>
.
(Tue, 02 Jun 2009 02:25:05 GMT)
Full text and
rfc822 format available.
Message #5 received at submit <at> emacsbugs.donarmstrong.com (full text, mbox):
Please write in English if possible, because the Emacs maintainers
usually do not have translators to read other languages for them.
Your bug report will be posted to the emacs-pretest-bug <at> gnu.org mailing list.
Please describe exactly what actions triggered the bug
and the precise symptoms of the bug:
There are a couple inconsistencies between the documentation in
(info "(message) Header Commands") and the actual bindings specified in
the code.
`C-c C-f C-o' is described as running both `message-goto-followup-to'
and `message-goto-from'. It is only runs the latter.
C-c C-f C-f is documented as running `message-goto-bcc', but C-c C-f C-f
runs the command `message-goto-followup-to'
C-c C-f C-w is what actually runs `message-goto-fcc', which was not
documented.
I assume the code is correct, and am including a patch to the
documentation (inline, at the end) to fix these inconsistencies.
If Emacs crashed, and you have the Emacs process in the gdb debugger,
please include the output from the following gdb commands:
`bt full' and `xbacktrace'.
If you would like to further debug the crash, please read the file
/home/rcy/emacs/etc/DEBUG for instructions.
In GNU Emacs 23.0.93.1 (i686-pc-linux-gnu, X toolkit)
of 2009-05-21 on freegeek
Windowing system distributor `The X.Org Foundation', version 11.0.10502000
Important settings:
value of $LC_ALL: nil
value of $LC_COLLATE: nil
value of $LC_CTYPE: nil
value of $LC_MESSAGES: nil
value of $LC_MONETARY: nil
value of $LC_NUMERIC: nil
value of $LC_TIME: nil
value of $LANG: es_MX.UTF-8
value of $XMODIFIERS: nil
locale-coding-system: utf-8-unix
default-enable-multibyte-characters: t
Major mode: Mail
Minor modes in effect:
tooltip-mode: t
tool-bar-mode: t
mouse-wheel-mode: t
menu-bar-mode: t
file-name-shadow-mode: t
global-font-lock-mode: t
font-lock-mode: t
blink-cursor-mode: t
global-auto-composition-mode: t
auto-composition-mode: t
auto-encryption-mode: t
auto-compression-mode: t
line-number-mode: t
transient-mark-mode: t
Recent input:
M-x m e s s a g <tab> c <tab> <M-backspace> <M-backspace>
<tab> m a i <tab> <return> C-c C-f C-w C-c C-f C-f
C-a C-k C-k C-n C-k C-k M-x r e p o r t - e m a c s
- b u f <backspace> g <return>
Recent messages:
For information about GNU Emacs and the GNU system, type C-h C-a.
Making completion list...
Source file `/home/rcy/emacs/lisp/view.el' newer than byte-compiled file
Parsing /home/rcy/.mailrc... done
2009-06-02 Ryan Yeske <rcyeske <at> gmail.com>
* message.texi (Header Commands): Fix descriptions to match
keybindings.
*** message.texi.~1.13.~ 2009-03-21 02:08:27.000000000 -0700
--- message.texi 2009-06-01 19:07:07.000000000 -0700
***************
*** 551,558 ****
@findex message-goto-bcc
Go to the @code{Bcc} header (@code{message-goto-bcc}).
! @item C-c C-f C-f
! @kindex C-c C-f C-f
@findex message-goto-fcc
Go to the @code{Fcc} header (@code{message-goto-fcc}).
--- 551,558 ----
@findex message-goto-bcc
Go to the @code{Bcc} header (@code{message-goto-bcc}).
! @item C-c C-f C-w
! @kindex C-c C-f C-w
@findex message-goto-fcc
Go to the @code{Fcc} header (@code{message-goto-fcc}).
***************
*** 581,588 ****
@findex message-goto-distribution
Go to the @code{Distribution} header (@code{message-goto-distribution}).
! @item C-c C-f C-o
! @kindex C-c C-f C-o
@findex message-goto-followup-to
Go to the @code{Followup-To} header (@code{message-goto-followup-to}).
--- 581,588 ----
@findex message-goto-distribution
Go to the @code{Distribution} header (@code{message-goto-distribution}).
! @item C-c C-f C-f
! @kindex C-c C-f C-f
@findex message-goto-followup-to
Go to the @code{Followup-To} header (@code{message-goto-followup-to}).
Information forwarded
to
bug-submit-list <at> lists.donarmstrong.com, Emacs Bugs <bug-gnu-emacs <at> gnu.org>
:
bug#3448
; Package
emacs
.
(Thu, 04 Jun 2009 01:50:05 GMT)
Full text and
rfc822 format available.
Acknowledgement sent
to
Chong Yidong <cyd <at> stupidchicken.com>
:
Extra info received and forwarded to list. Copy sent to
Emacs Bugs <bug-gnu-emacs <at> gnu.org>
.
(Thu, 04 Jun 2009 01:50:05 GMT)
Full text and
rfc822 format available.
Message #10 received at 3448 <at> emacsbugs.donarmstrong.com (full text, mbox):
> There are a couple inconsistencies between the documentation in
> (info "(message) Header Commands") and the actual bindings specified in
> the code.
>
> I assume the code is correct, and am including a patch to the
> documentation (inline, at the end) to fix these inconsistencies.
Checked in, thanks.
bug closed, send any further explanations to Ryan Yeske <rcyeske <at> gmail.com>
Request was from
Glenn Morris <rgm+emacsbugs <at> gnu.org>
to
control <at> emacsbugs.donarmstrong.com
.
(Wed, 17 Jun 2009 07:35:09 GMT)
Full text and
rfc822 format available.
bug archived.
Request was from
Debbugs Internal Request <help-debbugs <at> gnu.org>
to
internal_control <at> emacsbugs.donarmstrong.com
.
(Wed, 15 Jul 2009 14:24:11 GMT)
Full text and
rfc822 format available.
This bug report was last modified 15 years and 347 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.