summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Roessler <roessler@does-not-exist.org>2000-01-19 10:18:02 +0000
committerThomas Roessler <roessler@does-not-exist.org>2000-01-19 10:18:02 +0000
commit7beebaa1685b278b7a02c32afc2bc7071f0b1cff (patch)
tree0485d56d53a97bcf943f4be1e6b86a777bcd4143
parent942b7293c756ff5b0c9f9f85bccb46e8d177a858 (diff)
Rename display-headers to display-toggle-weed.
-rw-r--r--OPS2
-rw-r--r--doc/manual.sgml.head2
-rw-r--r--doc/manual.sgml.tail8
-rw-r--r--functions.h8
4 files changed, 10 insertions, 10 deletions
diff --git a/OPS b/OPS
index a4e8fa75..2c3898fa 100644
--- a/OPS
+++ b/OPS
@@ -51,7 +51,7 @@ OP_DELETE_MAILBOX "delete the current mailbox (IMAP only)"
OP_DELETE_SUBTHREAD "delete all messages in subthread"
OP_DELETE_THREAD "delete all messages in thread"
OP_DISPLAY_ADDRESS "display full address of sender"
-OP_DISPLAY_HEADERS "display message with full headers"
+OP_DISPLAY_HEADERS "display message and toggle header weeding"
OP_DISPLAY_MESSAGE "display a message"
OP_EDIT_MESSAGE "edit the raw message"
OP_EDITOR_BACKSPACE "delete the char in front of the cursor"
diff --git a/doc/manual.sgml.head b/doc/manual.sgml.head
index cb20a96e..0b95b81e 100644
--- a/doc/manual.sgml.head
+++ b/doc/manual.sgml.head
@@ -329,7 +329,7 @@ Specifying an <ref id="alias_file" name="&dollar;alias&lowbar;file">
does not add the aliases specified there-in, you must also <ref
id="source" name="source"> the file.
-<p><bf/display-headers/<label id="display-headers"> (default: h)<newline>
+<p><bf/display-toggle-weed/<label id="display-toggle-weed"> (default: h)<newline>
Toggles the weeding of message header fields specified by <ref id="ignore"
name="ignore"> commands.
diff --git a/doc/manual.sgml.tail b/doc/manual.sgml.tail
index 6a177d53..a2dc47ae 100644
--- a/doc/manual.sgml.tail
+++ b/doc/manual.sgml.tail
@@ -61,7 +61,7 @@ delete-pattern D delete messages matching a pattern
delete-subthread ESC d delete all messages in subthread
delete-thread ^D delete all messages in thread
display-address @ display full address of sender
-display-headers h display message with full headers
+display-toggle-weed h display message and toggle header weeding
display-message RET display a message
edit e edit the current message
exit x exit without saving changes
@@ -128,7 +128,7 @@ delete-message d delete the current entry
delete-subthread ESC d delete all messages in subthread
delete-thread ^D delete all messages in thread
display-address @ display full address of sender
-display-headers h display message with full headers
+display-toggle-weed h display message and toggle header weeding
edit e edit the current message
enter-command : enter a muttrc command
exit i return to the main-menu
@@ -212,7 +212,7 @@ bounce-message b remail a message to another user
decode-copy ESC C decode a message and copy it to a file/mailbox
decode-save ESC s decode a message and save it to a file/mailbox
delete-entry d delete the current entry
-display-headers h display message with full headers
+display-toggle-weed h display message and toggle header weeding
extract-keys ^K extract PGP public keys
forward-message f forward a message with comments
group-reply g reply to all recipients
@@ -234,7 +234,7 @@ attach-message A attach message(s) to this message
attach-key ESC k attach a PGP public key
copy-file C save message/attachment to a file
detach-file D delete the current entry
-display-headers h display message with full headers
+display-toggle-weed h display message and toggle header weeding
edit-bcc b edit the BCC list
edit-cc c edit the CC list
edit-description d edit attachment description
diff --git a/functions.h b/functions.h
index b8513d7f..e5f6ad0c 100644
--- a/functions.h
+++ b/functions.h
@@ -85,7 +85,7 @@ struct binding_t OpMain[] = {
#ifdef USE_POP
{ "fetch-mail", OP_MAIN_FETCH_MAIL, "G" },
#endif
- { "display-headers", OP_DISPLAY_HEADERS, "h" },
+ { "display-toggle-weed", OP_DISPLAY_HEADERS, "h" },
{ "next-undeleted", OP_MAIN_NEXT_UNDELETED, "j" },
{ "previous-undeleted", OP_MAIN_PREV_UNDELETED, "k" },
{ "limit", OP_MAIN_LIMIT, "l" },
@@ -160,7 +160,7 @@ struct binding_t OpPager[] = {
{ "forward-message", OP_FORWARD_MESSAGE, "f" },
{ "flag-message", OP_FLAG_MESSAGE, "F" },
{ "group-reply", OP_GROUP_REPLY, "g" },
- { "display-headers", OP_DISPLAY_HEADERS, "h" },
+ { "display-toggle-weed", OP_DISPLAY_HEADERS, "h" },
{ "exit", OP_PAGER_EXIT, "i" },
{ "next-undeleted", OP_MAIN_NEXT_UNDELETED, "j" },
{ "next-entry", OP_NEXT_ENTRY, "J" },
@@ -235,7 +235,7 @@ struct binding_t OpPager[] = {
struct binding_t OpAttach[] = {
{ "bounce-message", OP_BOUNCE_MESSAGE, "b" },
- { "display-headers", OP_DISPLAY_HEADERS, "h" },
+ { "display-toggle-weed", OP_DISPLAY_HEADERS, "h" },
{ "edit-type", OP_EDIT_TYPE, "\005" },
{ "print-entry", OP_PRINT, "p" },
{ "save-entry", OP_SAVE, "s" },
@@ -270,7 +270,7 @@ struct binding_t OpCompose[] = {
{ "edit-cc", OP_COMPOSE_EDIT_CC, "c" },
{ "copy-file", OP_SAVE, "C" },
{ "detach-file", OP_DELETE, "D" },
- { "display-headers", OP_DISPLAY_HEADERS, "h" },
+ { "display-toggle-weed", OP_DISPLAY_HEADERS, "h" },
{ "edit-description", OP_COMPOSE_EDIT_DESCRIPTION, "d" },
{ "edit-message", OP_COMPOSE_EDIT_MESSAGE, "e" },
{ "edit-headers", OP_COMPOSE_EDIT_HEADERS, "E" },