comparison lisp/ffap.el @ 55999:73c87f418eba

Fix for url mode alist to recognize patterns such as &<str>; as valid
author Rajesh Vaidheeswarran <rv@gnu.org>
date Wed, 09 Jun 2004 18:32:06 +0000
parents b91c8ab75b81
children 481f80f548e1 4c90ffeb71c5
comparison
equal deleted inserted replaced
55998:9ad56faeb13c 55999:73c87f418eba
939 ;; Slightly controversial decisions: 939 ;; Slightly controversial decisions:
940 ;; * strip trailing "@" and ":" 940 ;; * strip trailing "@" and ":"
941 ;; * no commas (good for latex) 941 ;; * no commas (good for latex)
942 (file "--:$+<>@-Z_a-z~" "<@" "@>;.,!?:") 942 (file "--:$+<>@-Z_a-z~" "<@" "@>;.,!?:")
943 ;; An url, or maybe a email/news message-id: 943 ;; An url, or maybe a email/news message-id:
944 (url "--:=&?$+@-Z_a-z~#,%" "^A-Za-z0-9" ":;.,!?") 944 (url "--:=&?$+@-Z_a-z~#,%;" "^A-Za-z0-9" ":;.,!?")
945 ;; Find a string that does *not* contain a colon: 945 ;; Find a string that does *not* contain a colon:
946 (nocolon "--9$+<>@-Z_a-z~" "<@" "@>;.,!?") 946 (nocolon "--9$+<>@-Z_a-z~" "<@" "@>;.,!?")
947 ;; A machine: 947 ;; A machine:
948 (machine "-a-zA-Z0-9." "" ".") 948 (machine "-a-zA-Z0-9." "" ".")
949 ;; Mathematica paths: allow backquotes 949 ;; Mathematica paths: allow backquotes