Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
ac13660a
Commit
ac13660a
authored
Feb 23, 1991
by
Jim Blandy
Browse files
*** empty log message ***
parent
2dd96f23
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
5 deletions
+9
-5
lisp/mail/rmailkwd.el
lisp/mail/rmailkwd.el
+9
-5
No files found.
lisp/mail/rmailkwd.el
View file @
ac13660a
...
...
@@ -111,7 +111,7 @@ Completion is performed over known labels when reading."
;; Commented functions aren't used by RMAIL but might be nice for user
;; packages that do stuff with RMAIL. Note that rmail-message-labels-p
;; is in rmail
sum
now.
;; is in rmail
.el
now.
;(defun rmail-message-attribute-p (attribute &optional n)
; "Returns t if ATTRIBUTE on NTH or current message."
...
...
@@ -171,14 +171,18 @@ Completion is performed over known labels when reading."
;; Motion on messages with keywords.
(
defun
rmail-previous-labeled-message
(
n
label
)
"Show previous message with LABEL. Defaults to last labels used.
(
defun
rmail-previous-labeled-message
(
n
labels
)
"Show previous message with one of the labels LABELS.
LABELS should be a comma-separated list of label names.
If LABELS is empty, the last set of labels specified is used.
With prefix argument N moves backward N messages with these labels."
(
interactive
"p\nsMove to previous msg with labels: "
)
(
rmail-next-labeled-message
(
-
n
)
label
))
(
rmail-next-labeled-message
(
-
n
)
label
s
))
(
defun
rmail-next-labeled-message
(
n
labels
)
"Show next message with LABEL. Defaults to last labels used.
"Show next message with one of the labels LABELS.
LABELS should be a comma-separated list of label names.
If LABELS is empty, the last set of labels specified is used.
With prefix argument N moves forward N messages with these labels."
(
interactive
"p\nsMove to next msg with labels: "
)
(
if
(
string=
labels
""
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment