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
067eac9b
Commit
067eac9b
authored
Jun 09, 2004
by
Rajesh Vaidheeswarran
Browse files
Fix for url mode alist to recognize patterns such as &<str>; as valid
parent
ef61fc40
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
1 deletion
+6
-1
lisp/ChangeLog
lisp/ChangeLog
+5
-0
lisp/ffap.el
lisp/ffap.el
+1
-1
No files found.
lisp/ChangeLog
View file @
067eac9b
2004-06-09 Rajesh Vaidheeswarran <rv@gnu.org>
* ffap.el (ffap-string-at-point-mode-alist): Fix the url mode to
include forms like &<str>; as valid url patterns.
2004-06-08 Luc Teirlinck <teirllm@auburn.edu>
* dired.el (dired-diff, dired-backup-diff)
...
...
lisp/ffap.el
View file @
067eac9b
...
...
@@ -941,7 +941,7 @@ If t, `ffap-tex-init' will initialize this when needed.")
;; * no commas (good for latex)
(
file
"--:$+<>@-Z_a-z~"
"<@"
"@>;.,!?:"
)
;; An url, or maybe a email/news message-id:
(
url
"--:=&?$+@-Z_a-z~#,%"
"^A-Za-z0-9"
":;.,!?"
)
(
url
"--:=&?$+@-Z_a-z~#,%
;
"
"^A-Za-z0-9"
":;.,!?"
)
;; Find a string that does *not* contain a colon:
(
nocolon
"--9$+<>@-Z_a-z~"
"<@"
"@>;.,!?"
)
;; A machine:
...
...
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