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
4dc7e43b
Commit
4dc7e43b
authored
Sep 22, 1994
by
Richard M. Stallman
Browse files
(rmail-summary-goto-msg): Simply the regexp
for finding the message number. Check that a non-digit follows it.
parent
6696af65
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
lisp/mail/rmailsum.el
lisp/mail/rmailsum.el
+1
-1
No files found.
lisp/mail/rmailsum.el
View file @
4dc7e43b
...
...
@@ -807,7 +807,7 @@ Commands for sorting the summary:
(
goto-char
(
point-max
))
(
rmail-summary-goto-msg
)))
(
goto-char
(
point-min
))
(
if
(
not
(
re-search-forward
(
conc
at
"^
*"
(
int-to-string
n
)
)
nil
t
))
(
if
(
not
(
re-search-forward
(
form
at
"^
%4d[^0-9]"
n
)
nil
t
))
(
progn
(
or
nowarn
(
message
"Message %d not found"
n
))
(
setq
n
curmsg
)
(
setq
message-not-found
t
)
...
...
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