Mercurial > emacs
annotate lisp/ffap.el @ 15891:dbc8c9c9d819
(x_set_scroll_bar_width): Call x_set_window_size when arg is nil.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Wed, 21 Aug 1996 04:53:08 +0000 |
parents | cecaaaec6fd6 |
children | 595d0ac6eff6 |
rev | line source |
---|---|
14874
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1 ;;; ffap.el --- find file or url at point |
13531 | 2 |
14874
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
3 ;; Copyright (C) 1995, 1996 Free Software Foundation, Inc. |
14169 | 4 |
5 ;; Author: Michelangelo Grigni <mic@mathcs.emory.edu> | |
14874
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
6 ;; Created: 29 Mar 1993 |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
7 ;; Keywords: files, hypermedia, matching, mouse |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
8 ;; X-Latest: ftp://ftp.mathcs.emory.edu:/pub/mic/emacs/ |
13531 | 9 |
10 ;; This file is part of GNU Emacs. | |
11 | |
12 ;; GNU Emacs is free software; you can redistribute it and/or modify | |
13 ;; it under the terms of the GNU General Public License as published by | |
14 ;; the Free Software Foundation; either version 2, or (at your option) | |
15 ;; any later version. | |
16 | |
17 ;; GNU Emacs is distributed in the hope that it will be useful, | |
18 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
19 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
20 ;; GNU General Public License for more details. | |
21 | |
22 ;; You should have received a copy of the GNU General Public License | |
14169 | 23 ;; along with GNU Emacs; see the file COPYING. If not, write to the |
24 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330, | |
25 ;; Boston, MA 02111-1307, USA. | |
13531 | 26 |
14874
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
27 |
13531 | 28 ;;; Commentary: |
29 ;; | |
14874
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
30 ;; Command find-file-at-point replaces find-file. With a prefix, it |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
31 ;; behaves exactly like find-file. Without a prefix, it first tries |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
32 ;; to guess a default file or url from the text around the point |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
33 ;; (`ffap-require-prefix' swaps these behaviors). This is useful for |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
34 ;; following references in situations such as mail or news buffers, |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
35 ;; README's, MANIFEST's, and so on. Submit bugs or suggestions with |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
36 ;; M-x ffap-bug. |
13531 | 37 ;; |
14874
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
38 ;; For the default installation, byte-compile ffap.el somewhere in |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
39 ;; your `load-path' and add these two lines to your .emacs file: |
13531 | 40 ;; |
14874
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
41 ;; (require 'ffap) ; load the package |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
42 ;; (ffap-bindings) ; do default key bindings |
13531 | 43 ;; |
14874
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
44 ;; ffap-bindings makes the following global key bindings: |
13531 | 45 ;; |
14874
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
46 ;; C-x C-f find-file-at-point (abbreviated as ffap) |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
47 ;; C-x 4 f ffap-other-window |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
48 ;; C-x 5 f ffap-other-frame |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
49 ;; S-mouse-3 ffap-at-mouse |
13531 | 50 ;; |
14874
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
51 ;; ffap-bindings also adds hooks to make the following local bindings |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
52 ;; in vm, gnus, and rmail: |
13531 | 53 ;; |
14874
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
54 ;; M-l ffap-next, or ffap-gnus-next in gnus |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
55 ;; M-m ffap-menu, or ffap-gnus-menu in gnus |
13531 | 56 ;; |
14874
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
57 ;; If you do not like these bindings, modify the variable |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
58 ;; `ffap-bindings', or write your own. |
13531 | 59 ;; |
14874
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
60 ;; If you use ange-ftp, browse-url, complete, efs, or w3, it is best |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
61 ;; to load or autoload them before ffap. If you use ff-paths, load it |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
62 ;; afterwards. Try apropos {C-h a ffap RET} to get a list of the many |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
63 ;; option variables. In particular, if ffap is slow, try these: |
13531 | 64 ;; |
14874
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
65 ;; (setq ffap-alist nil) ; faster, dumber prompting |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
66 ;; (setq ffap-machine-p-known 'accept) ; no pinging |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
67 ;; (setq ffap-url-regexp nil) ; disable url features in ffap |
13531 | 68 ;; |
14874
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
69 ;; ffap uses w3 (if found) or else browse-url to fetch url's. For |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
70 ;; a hairier `ffap-url-fetcher', try ffap-url.el (same ftp site). |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
71 ;; Also, you can add `ffap-menu-rescan' to various hooks to fontify |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
72 ;; the file and url references within a buffer. |
13531 | 73 |
14874
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
74 ;;; Todo list: |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
75 ;; * recognize paths inside /usr/bin:/bin:/etc, ./ffap.el:80: |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
76 ;; * let "/path/file#key" jump to key (offset or regexp) in /path/file |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
77 ;; * find file of symbol if TAGS is loaded (like above) |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
78 ;; * break up long menus into multiple panes (like imenu?) |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
79 ;; * notice node in "(dired)Virtual Dired" (handle the space?) |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
80 ;; * notice "machine.dom blah blah blah path/file" (how?) |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
81 ;; * if w3 becomes standard, could rewrite to use its functions |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
82 ;; * regexp options for ffap-string-at-point, like font-lock (MCOOK) |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
83 ;; * v19: could replace `ffap-locate-file' with a quieter `locate-library' |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
84 ;; * support for custom.el |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
85 ;; + handle "$(HOME)" in Makefiles? |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
86 ;; + modify `font-lock-keywords' to do fontification |
13531 | 87 |
88 | |
89 ;;; Code: | |
90 | |
91 (provide 'ffap) | |
92 | |
14874
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
93 ;; Versions: This file is tested with Emacs 19.30. It mostly works |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
94 ;; with XEmacs, but get ffap-xe.el for the popup menu. Emacs 18 is |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
95 ;; now abandoned (get ffap-15.el instead). |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
96 |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
97 (defvar ffap-xemacs (and (string-match "X[Ee]macs" emacs-version) t) |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
98 "Whether ffap thinks it is running under XEmacs.") |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
99 |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
100 |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
101 |
13531 | 102 ;;; User Variables: |
103 | |
104 ;; This function is used inside defvars: | |
105 (defun ffap-soft-value (name &optional default) | |
14874
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
106 "Return value of symbol with NAME, if it is interned. |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
107 Otherwise return nil (or the optional DEFAULT value)." |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
108 ;; Bug: (ffap-soft-value "nil" 5) --> 5 |
13531 | 109 (let ((sym (intern-soft name))) |
110 (if (and sym (boundp sym)) (symbol-value sym) default))) | |
111 | |
112 | |
113 (defvar ffap-ftp-regexp | |
114 (and | |
115 (or (featurep 'ange-ftp) | |
116 (featurep 'efs) | |
117 (and (boundp 'file-name-handler-alist) ; v19 | |
118 (or (rassq 'ange-ftp-hook-function file-name-handler-alist) | |
119 (rassq 'efs-file-handler-function file-name-handler-alist)))) | |
120 ;; Apparently this is good enough for both ange-ftp and efs: | |
121 "\\`/[^/:]+:") | |
122 "*Treat paths matching this as remote ftp paths. Nil to disable. | |
123 Nil also disables the generation of such paths by ffap.") | |
124 | |
125 (defvar ffap-url-unwrap-local t | |
14874
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
126 "*If non-nil, convert \"file:\" url to local path before prompting.") |
13531 | 127 |
128 (defvar ffap-url-unwrap-remote t | |
14874
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
129 "*If non-nil, convert \"ftp:\" url to remote path before prompting. |
13531 | 130 This is ignored if `ffap-ftp-regexp' is nil.") |
131 | |
132 (defvar ffap-ftp-default-user | |
133 (if (or (equal (ffap-soft-value "ange-ftp-default-user") "anonymous") | |
134 (equal (ffap-soft-value "efs-default-user") "anonymous")) | |
135 nil | |
136 "anonymous") | |
14874
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
137 "*User name in ftp paths generated by `ffap-host-to-path'. |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
138 Nil to rely on `efs-default-user' or `ange-ftp-default-user'.") |
13531 | 139 |
140 (defvar ffap-rfs-regexp | |
141 ;; Remote file access built into file system? HP rfa or Andrew afs: | |
142 "\\`/\\(afs\\|net\\)/." | |
143 ;; afs only: (and (file-exists-p "/afs") "\\`/afs/.") | |
14874
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
144 "*Matching paths are treated as remote. Nil to disable.") |
13531 | 145 |
146 (defvar ffap-url-regexp | |
147 ;; Could just use `url-nonrelative-link' of w3, if loaded. | |
148 ;; This regexp is not exhaustive, it just matches common cases. | |
149 (concat | |
150 "\\`\\(" | |
151 "news\\(post\\)?:\\|mailto:\\|file:" ; no host ok | |
152 "\\|" | |
153 "\\(ftp\\|http\\|telnet\\|gopher\\|www\\|wais\\)://" ; needs host | |
154 "\\)." ; require one more character | |
155 ) | |
14874
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
156 "Regexp matching url's. Nil to disable url features in ffap.") |
13531 | 157 |
14874
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
158 (defvar ffap-foo-at-bar-prefix "mailto" |
13531 | 159 "*Presumed url prefix type of strings like \"<foo.9z@bar>\". |
160 Sensible values are nil, \"news\", or \"mailto\".") | |
161 | |
162 | |
163 ;;; Peanut Gallery: | |
14874
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
164 ;; |
13531 | 165 ;; Users of ffap occasionally suggest new features. If I consider |
166 ;; those features interesting but not clear winners (a matter of | |
167 ;; personal taste) I try to leave options to enable them. Read | |
14874
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
168 ;; through this section for features that you like, put an appropriate |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
169 ;; enabler in your .emacs file. |
13531 | 170 |
171 (defvar ffap-dired-wildcards nil ; "[*?][^/]*$" | |
14874
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
172 ;; Suggestion from RHOGEE, 07 Jul 1994. Disabled, dired is still |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
173 ;; available by "C-x C-d <pattern>", and valid filenames may |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
174 ;; sometimes contain wildcard characters. |
13531 | 175 "*A regexp matching filename wildcard characters, or nil. |
14874
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
176 If `find-file-at-point' gets a filename matching this pattern, |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
177 it passes it on to `dired' instead of `find-file'.") |
13531 | 178 |
179 (defvar ffap-newfile-prompt nil ; t | |
14874
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
180 ;; Suggestion from RHOGEE, 11 Jul 1994. Disabled, I think this is |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
181 ;; better handled by `find-file-not-found-hooks'. |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
182 "*Whether `find-file-at-point' prompts about a nonexistent file.") |
13531 | 183 |
184 (defvar ffap-require-prefix nil | |
14874
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
185 ;; Suggestion from RHOGEE, 20 Oct 1994. |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
186 "*If set, reverses the prefix argument to `find-file-at-point'. |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
187 This is nil so neophytes notice ffap. Experts may prefer to disable |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
188 ffap most of the time.") |
13531 | 189 |
14874
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
190 (defvar ffap-file-finder 'find-file |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
191 "*The command called by `find-file-at-point' to find a file.") |
13531 | 192 (put 'ffap-file-finder 'risky-local-variable t) |
193 | |
14874
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
194 (defvar ffap-url-fetcher |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
195 (cond ((fboundp 'w3-fetch) 'w3-fetch) |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
196 ((fboundp 'browse-url-netscape) 'browse-url-netscape) |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
197 (t 'w3-fetch)) |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
198 ;; Remote control references: |
13531 | 199 ;; http://www.ncsa.uiuc.edu/SDG/Software/XMosaic/remote-control.html |
200 ;; http://home.netscape.com/newsref/std/x-remote.html | |
14874
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
201 "*A function of one argument, called by ffap to fetch an URL. |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
202 Reasonable choices are `w3-fetch' or `browse-url-netscape'. |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
203 For a fancier alternative, get ffap-url.el.") |
13531 | 204 (put 'ffap-url-fetcher 'risky-local-variable t) |
205 | |
206 | |
207 ;;; Command ffap-next: | |
208 ;; | |
14874
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
209 ;; Original ffap-next-url (URL's only) from RPECK 30 Mar 1995. Since |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
210 ;; then, broke it up into ffap-next-guess (noninteractive) and |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
211 ;; ffap-next (a command). It now work on files as well as url's. |
13531 | 212 |
213 (defvar ffap-next-regexp | |
214 ;; If you want ffap-next to find URL's only, try this: | |
215 ;; (and ffap-url-regexp (string-match "\\\\`" ffap-url-regexp) | |
216 ;; (concat "\\<" (substring ffap-url-regexp 2)))) | |
217 ;; | |
218 ;; It pays to put a big fancy regexp here, since ffap-guesser is | |
219 ;; much more time-consuming than regexp searching: | |
220 "[/:.~a-zA-Z]/\\|@[a-zA-Z][-a-zA-Z0-9]*\\." | |
14874
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
221 "*Regular expression governing movements of `ffap-next'.") |
13531 | 222 |
223 (defvar ffap-next-guess nil "Last value returned by `ffap-next-guess'.") | |
224 (defun ffap-next-guess (&optional back lim) | |
225 "Move point to next file or url, and return it as a string. | |
14874
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
226 If nothing is found, leave point at limit and return nil. |
13531 | 227 Optional BACK argument makes search backwards. |
228 Optional LIM argument limits the search. | |
229 Only considers strings that match `ffap-next-regexp'." | |
230 (or lim (setq lim (if back (point-min) (point-max)))) | |
231 (let (guess) | |
232 (while (not (or guess (eq (point) lim))) | |
233 (funcall (if back 're-search-backward 're-search-forward) | |
234 ffap-next-regexp lim 'move) | |
235 (setq guess (ffap-guesser))) | |
236 ;; Go to end, so we do not get same guess twice: | |
237 (goto-char (nth (if back 0 1) ffap-string-at-point-region)) | |
238 (setq ffap-next-guess guess))) | |
239 | |
240 ;;;###autoload | |
241 (defun ffap-next (&optional back wrap) | |
242 "Search buffer for next file or url, and run ffap. | |
243 Optional argument BACK says to search backwards. | |
244 Optional argument WRAP says to try wrapping around if necessary. | |
245 Interactively: use a single prefix to search backwards, | |
246 double prefix to wrap forward, triple to wrap backwards. | |
14874
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
247 Actual search is done by `ffap-next-guess'." |
13531 | 248 (interactive |
249 (cdr (assq (prefix-numeric-value current-prefix-arg) | |
250 '((1) (4 t) (16 nil t) (64 t t))))) | |
251 (let ((pt (point)) | |
252 (guess (ffap-next-guess back))) | |
253 ;; Try wraparound if necessary: | |
254 (and (not guess) wrap | |
255 (goto-char (if back (point-max) (point-min))) | |
256 (setq guess (ffap-next-guess back pt))) | |
257 (if guess | |
258 (progn | |
259 (sit-for 0) ; display point movement | |
260 (find-file-at-point (ffap-prompter guess))) | |
261 (goto-char pt) ; restore point | |
262 (message "No %sfiles or URL's found." | |
263 (if wrap "" "more "))))) | |
264 | |
265 (defun ffap-next-url (&optional back wrap) | |
14874
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
266 "Like `ffap-next', but search with `ffap-url-regexp'." |
13531 | 267 (interactive) |
268 (let ((ffap-next-regexp ffap-url-regexp)) | |
269 (if (interactive-p) | |
270 (call-interactively 'ffap-next) | |
271 (ffap-next back wrap)))) | |
272 | |
273 | |
274 ;;; Remote machines and paths: | |
275 | |
14874
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
276 (defun ffap-replace-path-component (fullname name) |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
277 "In remote FULLNAME, replace path with NAME. May return nil." |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
278 ;; Use ange-ftp or efs if loaded, but do not load them otherwise. |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
279 (let (found) |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
280 (mapcar |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
281 (function (lambda (sym) (and (fboundp sym) (setq found sym)))) |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
282 '( |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
283 efs-replace-path-component |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
284 ange-ftp-replace-path-component |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
285 ange-ftp-replace-name-component |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
286 )) |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
287 (and found |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
288 (fset 'ffap-replace-path-component found) |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
289 (funcall found fullname name)))) |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
290 ;; (ffap-replace-path-component "/who@foo.com:/whatever" "/new") |
13531 | 291 |
292 (defun ffap-file-exists-string (file) | |
293 ;; With certain packages (ange-ftp, jka-compr?) file-exists-p | |
294 ;; sometimes returns a nicer string than it is given. Otherwise, it | |
295 ;; just returns nil or t. | |
296 "Return FILE \(maybe modified\) if it exists, else nil." | |
14874
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
297 (and file ; quietly reject nil |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
298 (let ((exists (file-exists-p file))) |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
299 (and exists (if (stringp exists) exists file))))) |
13531 | 300 |
301 ;; I cannot decide a "best" strategy here, so these are variables. In | |
302 ;; particular, if `Pinging...' is broken or takes too long on your | |
303 ;; machine, try setting these all to accept or reject. | |
304 (defvar ffap-machine-p-local 'reject ; this happens often | |
14874
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
305 "*A symbol, one of: ping, accept, reject. |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
306 What `ffap-machine-p' does with hostnames that have no domain.") |
13531 | 307 (defvar ffap-machine-p-known 'ping ; 'accept for speed |
14874
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
308 "*A symbol, one of: ping, accept, reject. |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
309 What `ffap-machine-p' does with hostnames that have a known domain |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
310 \(see mail-extr.el for the known domains\).") |
13531 | 311 (defvar ffap-machine-p-unknown 'reject |
14874
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
312 "*A symbol, one of: ping, accept, reject. |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
313 What `ffap-machine-p' does with hostnames that have an unknown domain |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
314 \(see mail-extr.el for the known domains\).") |
13531 | 315 |
14874
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
316 (defun ffap-what-domain (domain) |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
317 ;; Like what-domain in mail-extr.el, returns string or nil. |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
318 (require 'mail-extr) |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
319 (defvar mail-extr-all-top-level-domains |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
320 (ffap-soft-value "all-top-level-domains" obarray)) ; XEmacs, old Emacs |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
321 (get (intern-soft (downcase domain) mail-extr-all-top-level-domains) |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
322 'domain-name)) |
13531 | 323 |
14874
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
324 (defun ffap-machine-p (host &optional service quiet strategy) |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
325 "Decide whether HOST is the name of a real, reachable machine. |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
326 Depending on the domain (none, known, or unknown), follow the strategy |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
327 named by the variable `ffap-machine-p-local', `ffap-machine-p-known', |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
328 or `ffap-machine-p-unknown'. Pinging uses `open-network-stream'. |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
329 Optional SERVICE specifies the port used \(default \"discard\"\). |
13531 | 330 Optional QUIET flag suppresses the \"Pinging...\" message. |
14874
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
331 Optional STRATEGY overrides the three variables above. |
13531 | 332 Returned values: |
14874
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
333 t means that HOST answered. |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
334 'accept means the relevant variable told us to accept. |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
335 \"mesg\" means HOST exists, but does not respond for some reason." |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
336 ;; Try some (Emory local): |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
337 ;; (ffap-machine-p "ftp" nil nil 'ping) |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
338 ;; (ffap-machine-p "nonesuch" nil nil 'ping) |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
339 ;; (ffap-machine-p "ftp.mathcs.emory.edu" nil nil 'ping) |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
340 ;; (ffap-machine-p "mathcs" 5678 nil 'ping) |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
341 ;; (ffap-machine-p "foo.bonk" nil nil 'ping) |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
342 ;; (ffap-machine-p "foo.bonk.com" nil nil 'ping) |
13531 | 343 (if (or (string-match "[^-a-zA-Z0-9.]" host) ; Illegal chars (?) |
14874
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
344 (not (string-match "[^0-9]" host))) ; 1: a number? 2: quick reject |
13531 | 345 nil |
346 (let* ((domain | |
347 (and (string-match "\\.[^.]*$" host) | |
348 (downcase (substring host (1+ (match-beginning 0)))))) | |
14874
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
349 (what-domain (if domain (ffap-what-domain domain) "Local"))) |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
350 (or strategy |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
351 (setq strategy |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
352 (cond ((not domain) ffap-machine-p-local) |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
353 ((not what-domain) ffap-machine-p-unknown) |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
354 (t ffap-machine-p-known)))) |
13531 | 355 (cond |
356 ((eq strategy 'accept) 'accept) | |
357 ((eq strategy 'reject) nil) | |
358 ;; assume (eq strategy 'ping) | |
359 (t | |
360 (or quiet | |
14874
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
361 (if (stringp what-domain) |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
362 (message "Pinging %s (%s)..." host what-domain) |
13531 | 363 (message "Pinging %s ..." host))) |
364 (condition-case error | |
365 (progn | |
366 (delete-process | |
367 (open-network-stream | |
368 "ffap-machine-p" nil host (or service "discard"))) | |
369 t) | |
370 (error | |
371 (let ((mesg (car (cdr error)))) | |
372 (cond | |
373 ;; v18: | |
374 ((string-match "^Unknown host" mesg) nil) | |
375 ((string-match "not responding$" mesg) mesg) | |
376 ;; v19: | |
377 ;; (file-error "connection failed" "permission denied" | |
378 ;; "nonesuch" "ffap-machine-p") | |
379 ;; (file-error "connection failed" "host is unreachable" | |
380 ;; "gopher.house.gov" "ffap-machine-p") | |
381 ;; (file-error "connection failed" "address already in use" | |
382 ;; "ftp.uu.net" "ffap-machine-p") | |
383 ((equal mesg "connection failed") | |
384 (if (equal (nth 2 error) "permission denied") | |
385 nil ; host does not exist | |
14874
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
386 ;; Other errors mean the host exists: |
13531 | 387 (nth 2 error))) |
388 ;; Could be "Unknown service": | |
389 (t (signal (car error) (cdr error)))))))))))) | |
390 | |
391 (defun ffap-file-remote-p (filename) | |
392 "If FILENAME looks remote, return it \(maybe slightly improved\)." | |
393 ;; (ffap-file-remote-p "/user@foo.bar.com:/pub") | |
14874
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
394 ;; (ffap-file-remote-p "/cssun.mathcs.emory.edu://path") |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
395 ;; (ffap-file-remote-p "/ffap.el:80") |
13531 | 396 (or (and ffap-ftp-regexp |
397 (string-match ffap-ftp-regexp filename) | |
14874
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
398 ;; Convert "/host.com://path" to "/host:/path", to handle a dieing |
13531 | 399 ;; practice of advertising ftp paths as "host.dom://path". |
400 (if (string-match "//" filename) | |
14874
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
401 ;; (replace-match "/" nil nil filename) |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
402 (concat (substring filename 0 (1+ (match-beginning 0))) |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
403 (substring filename (match-end 0))) |
13531 | 404 filename)) |
405 (and ffap-rfs-regexp | |
406 (string-match ffap-rfs-regexp filename) | |
407 filename))) | |
408 | |
409 (defun ffap-machine-at-point nil | |
14874
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
410 "Return machine name at point if it exists, or nil." |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
411 (let ((mach (ffap-string-at-point 'machine))) |
13531 | 412 (and (ffap-machine-p mach) mach))) |
413 | |
14874
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
414 (defsubst ffap-host-to-path (host) |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
415 "Convert HOST to something like \"/anonymous@HOST:\". |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
416 Looks at `ffap-ftp-default-user', returns \"\" for \"localhost\"." |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
417 (if (equal host "localhost") "" |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
418 (concat "/" |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
419 ffap-ftp-default-user (and ffap-ftp-default-user "@") |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
420 host ":"))) |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
421 |
13531 | 422 (defun ffap-fixup-machine (mach) |
14874
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
423 ;; Convert a hostname into an url, an ftp path, or nil. |
13531 | 424 (cond |
425 ((not (and ffap-url-regexp (stringp mach))) nil) | |
14874
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
426 ;; gopher.well.com |
13531 | 427 ((string-match "\\`gopher[-.]" mach) ; or "info"? |
428 (concat "gopher://" mach "/")) | |
14874
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
429 ;; www.ncsa.uiuc.edu |
13531 | 430 ((and (string-match "\\`w\\(ww\\|eb\\)[-.]" mach)) |
431 (concat "http://" mach "/")) | |
432 ;; More cases? Maybe "telnet:" for archie? | |
433 (ffap-ftp-regexp (ffap-host-to-path mach)) | |
434 )) | |
435 | |
436 (defun ffap-newsgroup-p (string) | |
437 "Return STRING if it looks like a newsgroup name, else nil." | |
438 (and | |
439 (string-match ffap-newsgroup-regexp string) | |
440 (let ((htbs '(gnus-active-hashtb gnus-newsrc-hashtb gnus-killed-hashtb)) | |
441 (heads ffap-newsgroup-heads) | |
442 htb ret) | |
443 (while htbs | |
444 (setq htb (car htbs) htbs (cdr htbs)) | |
445 (condition-case nil | |
446 (progn | |
447 ;; errs: htb symbol may be unbound, or not a hash-table. | |
448 ;; gnus-gethash is just a macro for intern-soft. | |
449 (and (intern-soft string (symbol-value htb)) | |
450 (setq ret string htbs nil)) | |
14874
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
451 ;; If we made it this far, gnus is running, so ignore "heads": |
13531 | 452 (setq heads nil)) |
453 (error nil))) | |
454 (or ret (not heads) | |
455 (let ((head (string-match "\\`\\([a-z]+\\)\\." string))) | |
456 (and head (setq head (substring string 0 (match-end 1))) | |
457 (member head heads) | |
458 (setq ret string)))) | |
14874
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
459 ;; Is there ever a need to modify string as a newsgroup name? |
13531 | 460 ret))) |
461 (defvar ffap-newsgroup-regexp "^[a-z]+\\.[-+a-z_0-9.]+$" | |
14874
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
462 "Strings not matching this fail `ffap-newsgroup-p'.") |
13531 | 463 (defvar ffap-newsgroup-heads ; entirely inadequate |
464 '("alt" "comp" "gnu" "misc" "news" "sci" "soc" "talk") | |
14874
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
465 "Used by `ffap-newsgroup-p' if gnus is not running.") |
13531 | 466 |
14874
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
467 (defsubst ffap-url-p (string) |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
468 "If STRING looks like an url, return it (maybe improved), else nil." |
13531 | 469 (let ((case-fold-search t)) |
470 (and ffap-url-regexp (string-match ffap-url-regexp string) | |
471 ;; I lied, no improvement: | |
472 string))) | |
473 | |
14874
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
474 ;; Broke these out of ffap-fixup-url, for use of ffap-url package. |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
475 (defsubst ffap-url-unwrap-local (url) |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
476 "Return URL as a local file, or nil. Ignores `ffap-url-regexp'." |
13531 | 477 (and (string-match "\\`\\(file\\|ftp\\):/?\\([^/]\\|\\'\\)" url) |
478 (substring url (1+ (match-end 1))))) | |
14874
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
479 (defsubst ffap-url-unwrap-remote (url) |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
480 "Return URL as a remote file, or nil. Ignores `ffap-url-regexp'." |
13531 | 481 (and (string-match "\\`\\(ftp\\|file\\)://\\([^:/]+\\):?\\(/.*\\)" url) |
482 (concat | |
483 (ffap-host-to-path (substring url (match-beginning 2) (match-end 2))) | |
484 (substring url (match-beginning 3) (match-end 3))))) | |
14874
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
485 ;; Test: (ffap-url-unwrap-remote "ftp://foo.com/bar.boz") |
13531 | 486 |
487 (defun ffap-fixup-url (url) | |
14874
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
488 "Clean up URL and return it, maybe as a file name." |
13531 | 489 (cond |
490 ((not (stringp url)) nil) | |
491 ((and ffap-url-unwrap-local (ffap-url-unwrap-local url))) | |
492 ((and ffap-url-unwrap-remote ffap-ftp-regexp | |
493 (ffap-url-unwrap-remote url))) | |
494 ;; Do not load w3 just for this: | |
495 (t (let ((normal (and (fboundp 'url-normalize-url) | |
496 (url-normalize-url url)))) | |
497 ;; In case url-normalize-url is confused: | |
498 (or (and normal (not (zerop (length normal))) normal) | |
499 url))))) | |
500 | |
501 | |
502 ;;; `ffap-alist': | |
503 ;; | |
504 ;; Search actions depending on the major-mode or extensions of the | |
505 ;; current name. Note all the little defun's could be broken out, at | |
14874
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
506 ;; some loss of locality. A good example of featuritis. |
13531 | 507 |
508 ;; First, some helpers for functions in `ffap-alist': | |
509 | |
14874
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
510 (defvar path-separator ":") ; for XEmacs 19.13 |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
511 |
13531 | 512 (defun ffap-list-env (env &optional empty) |
513 ;; Replace this with parse-colon-path (lisp/files.el)? | |
14874
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
514 "Directory list parsed from path envinronment variable ENV. |
13531 | 515 Optional EMPTY is default if (getenv ENV) is undefined, and is also |
14874
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
516 substituted for the first empty-string component, if there is one. |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
517 Uses `path-separator' to separate the path into directories." |
13531 | 518 ;; Derived from psg-list-env in RHOGEE's ff-paths and |
519 ;; bib-cite packages. The `empty' argument is intended to mimic | |
520 ;; the semantics of TeX/BibTeX variables, it is substituted for | |
521 ;; any empty string entry. | |
522 (if (or empty (getenv env)) ; should return something | |
523 (let ((start 0) match dir ret) | |
14874
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
524 (setq env (concat (getenv env) path-separator)) |
13905
7df0a9cb269a
(ffap-list-env): Use `path-separator' rather than ":".
Richard M. Stallman <rms@gnu.org>
parents:
13531
diff
changeset
|
525 (while (setq match (string-match path-separator env start)) |
13531 | 526 (setq dir (substring env start match) start (1+ match)) |
527 ;;(and (file-directory-p dir) (not (member dir ret)) ...) | |
528 (setq ret (cons dir ret))) | |
529 (setq ret (nreverse ret)) | |
530 (and empty (setq match (member "" ret)) | |
531 (progn | |
532 (setcdr match (append (cdr-safe empty) (cdr match))) | |
533 (setcar match (or (car-safe empty) empty)))) | |
534 ret))) | |
535 | |
536 (defun ffap-reduce-path (path) | |
14874
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
537 "Remove duplicates and non-directories from PATH list." |
13531 | 538 (let (ret tem) |
539 (while path | |
540 (setq tem path path (cdr path)) | |
14874
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
541 (if (equal (car tem) ".") (setcar tem "")) |
13531 | 542 (or (member (car tem) ret) |
543 (not (file-directory-p (car tem))) | |
544 (progn (setcdr tem ret) (setq ret tem)))) | |
545 (nreverse ret))) | |
546 | |
547 (defun ffap-add-subdirs (path) | |
548 "Return PATH augmented with its immediate subdirectories." | |
549 ;; (ffap-add-subdirs '("/notexist" "~")) | |
550 (let (ret subs) | |
551 (while path | |
552 (mapcar | |
553 (function | |
554 (lambda (f) (and (file-directory-p f) (setq ret (cons f ret))))) | |
555 (condition-case nil | |
556 (directory-files (car path) t "[^.]") | |
557 (error nil))) | |
558 (setq ret (cons (car path) ret) | |
559 path (cdr path))) | |
560 (nreverse ret))) | |
561 | |
562 (defvar ffap-locate-jka-suffixes t | |
14874
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
563 "List of compression suffixes tried by `ffap-locate-file'. |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
564 If not a list, it is initialized by `ffap-locate-file', |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
565 and it becomes nil unless you are using jka-compr. |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
566 Typical values are nil or '(\".gz\" \".z\" \".Z\").") |
13531 | 567 |
568 (defun ffap-locate-file (file &optional nosuffix path) | |
14874
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
569 "A generic path-searching function, mimics `load' by default. |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
570 Returns path to file that \(load FILE\) would load, or nil. |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
571 Optional NOSUFFIX, if nil or t, is like the fourth argument |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
572 for load: whether to try the suffixes (\".elc\" \".el\" \"\"). |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
573 If a nonempty list, it is a list of suffixes to try instead. |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
574 Optional PATH is a list of directories instead of `load-path'." |
13531 | 575 (or path (setq path load-path)) |
576 (if (file-name-absolute-p file) | |
577 (setq path (list (file-name-directory file)) | |
578 file (file-name-nondirectory file))) | |
579 (let ((suffixes-to-try | |
580 (cond | |
581 ((consp nosuffix) nosuffix) | |
582 (nosuffix '("")) | |
583 (t '(".elc" ".el" ""))))) | |
14874
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
584 ;; Modern (>19.27) jka-compr doesn't try foo.gz when you want foo. |
13531 | 585 (or (listp ffap-locate-jka-suffixes) |
586 (setq ffap-locate-jka-suffixes | |
14874
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
587 (and (featurep 'jka-compr) |
13531 | 588 (not (featurep 'jka-aux)) |
589 jka-compr-file-name-handler-entry | |
590 (not (string-match | |
591 (car jka-compr-file-name-handler-entry) | |
592 "foo")) | |
14874
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
593 ;; Hard to do this cleverly across jka-compr versions: |
13531 | 594 '(".gz" ".Z")))) |
14874
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
595 (if ffap-locate-jka-suffixes ; so nil behaves like '("") |
13531 | 596 (setq suffixes-to-try |
597 (apply | |
598 'nconc | |
599 (mapcar | |
600 (function | |
601 (lambda (suf) | |
602 (cons suf | |
603 (mapcar | |
604 (function (lambda (x) (concat suf x))) | |
605 ffap-locate-jka-suffixes)))) | |
606 suffixes-to-try)))) | |
607 (let (found suffixes) | |
608 (while (and path (not found)) | |
609 (setq suffixes suffixes-to-try) | |
610 (while (and suffixes (not found)) | |
611 (let ((try (expand-file-name | |
612 (concat file (car suffixes)) | |
613 (car path)))) | |
614 (if (and (file-exists-p try) (not (file-directory-p try))) | |
615 (setq found try))) | |
616 (setq suffixes (cdr suffixes))) | |
617 (setq path (cdr path))) | |
618 found))) | |
619 | |
620 (defvar ffap-alist | |
621 ;; A big mess! Parts are probably useless. | |
622 (list | |
623 (cons "\\.info\\'" | |
624 (defun ffap-info (name) | |
625 (ffap-locate-file | |
626 name '("" ".info") | |
627 (or (ffap-soft-value "Info-directory-list") | |
628 (ffap-soft-value "Info-default-directory-list") | |
629 ;; v18: | |
630 (list (ffap-soft-value "Info-directory" "~/info/")))))) | |
631 ;; Since so many info files do not have .info extension, also do this: | |
632 (cons "\\`info/" | |
633 (defun ffap-info-2 (name) (ffap-info (substring name 5)))) | |
634 (cons "\\`[-a-z]+\\'" | |
635 ;; This ignores the node! "(emacs)Top" same as "(emacs)Intro" | |
636 (defun ffap-info-3 (name) | |
637 (and (equal (ffap-string-around) "()") (ffap-info name)))) | |
638 (cons "\\.elc?\\'" | |
639 (defun ffap-el (name) (ffap-locate-file name t))) | |
640 (cons 'emacs-lisp-mode | |
641 (defun ffap-el-mode (name) | |
642 ;; We do not bother with "" here, since it was considered above. | |
643 ;; Also ignore "elc", for speed (who else reads elc files?) | |
644 (and (not (string-match "\\.el\\'" name)) | |
645 (ffap-locate-file name '(".el"))))) | |
646 '(finder-mode . ffap-el-mode) ; v19: {C-h p} | |
647 '(help-mode . ffap-el-mode) ; v19.29 | |
648 (cons 'c-mode | |
649 (progn | |
14874
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
650 ;; Need better defaults here! |
13531 | 651 (defvar ffap-c-path '("/usr/include" "/usr/local/include")) |
652 (defun ffap-c-mode (name) | |
653 (ffap-locate-file name t ffap-c-path)))) | |
654 '(c++-mode . ffap-c-mode) | |
655 '(cc-mode . ffap-c-mode) | |
656 '("\\.\\([chCH]\\|cc\\|hh\\)\\'" . ffap-c-mode) | |
657 (cons 'tex-mode | |
658 ;; Complicated because auctex may not be loaded yet. | |
659 (progn | |
660 (defvar ffap-tex-path | |
14874
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
661 t ; delayed initialization |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
662 "Path where `ffap-tex-mode' looks for tex files. |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
663 If t, `ffap-tex-init' will initialize this when needed.") |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
664 (defun ffap-tex-init nil |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
665 ;; Compute ffap-tex-path if it is now t. |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
666 (and (eq t ffap-tex-path) |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
667 (message "Initializing ffap-tex-path ...") |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
668 (setq ffap-tex-path |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
669 (ffap-reduce-path |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
670 (append |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
671 (list ".") |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
672 (ffap-list-env "TEXINPUTS") |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
673 ;; (ffap-list-env "BIBINPUTS") |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
674 (ffap-add-subdirs |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
675 (ffap-list-env "TEXINPUTS_SUBDIR" |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
676 (ffap-soft-value |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
677 "TeX-macro-global" |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
678 '("/usr/local/lib/tex/macros" |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
679 "/usr/local/lib/tex/inputs") |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
680 )))))))) |
13531 | 681 (defun ffap-tex-mode (name) |
14874
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
682 (ffap-tex-init) |
13531 | 683 (ffap-locate-file name '(".tex" "") ffap-tex-path)))) |
684 (cons 'latex-mode | |
685 (defun ffap-latex-mode (name) | |
14874
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
686 (ffap-tex-init) |
13531 | 687 ;; Any real need for "" here? |
14874
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
688 (ffap-locate-file name '(".cls" ".sty" ".tex" "") |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
689 ffap-tex-path))) |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
690 (cons "\\.\\(tex\\|sty\\|doc\\|cls\\)\\'" |
13531 | 691 (defun ffap-tex (name) |
14874
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
692 (ffap-tex-init) |
13531 | 693 (ffap-locate-file name t ffap-tex-path))) |
694 (cons "\\.bib\\'" | |
695 (defun ffap-bib (name) | |
696 (ffap-locate-file | |
697 name t | |
698 (ffap-list-env "BIBINPUTS" '("/usr/local/lib/tex/macros/bib"))))) | |
699 (cons 'math-mode | |
700 (defun ffap-math-mode (name) | |
701 (while (string-match "`" name) | |
702 (setq name (concat (substring name 0 (match-beginning 0)) | |
703 "/" | |
704 (substring name (match-end 0))))) | |
705 (ffap-locate-file | |
706 name '(".m" "") (ffap-soft-value "Mathematica-search-path")))) | |
707 (cons "\\`\\." (defun ffap-home (name) (ffap-locate-file name t '("~")))) | |
708 (cons "\\`~/" | |
709 ;; Maybe a "Lisp Code Directory" reference: | |
710 (defun ffap-lcd (name) | |
711 (and | |
712 (or | |
713 ;; lisp-dir-apropos output buffer: | |
714 (string-match "Lisp Code Dir" (buffer-name)) | |
715 ;; Inside an LCD entry like |~/misc/ffap.el.Z|, | |
716 ;; or maybe the holy LCD-Datafile itself: | |
717 (member (ffap-string-around) '("||" "|\n"))) | |
718 (concat | |
719 ;; lispdir.el may not be loaded yet: | |
720 (ffap-host-to-path | |
721 (ffap-soft-value "elisp-archive-host" | |
722 "archive.cis.ohio-state.edu")) | |
723 (file-name-as-directory | |
724 (ffap-soft-value "elisp-archive-directory" | |
725 "/pub/gnu/emacs/elisp-archive/")) | |
726 (substring name 2))))) | |
727 (cons "^[Rr][Ff][Cc][- #]?\\([0-9]+\\)" ; no $ | |
728 (progn | |
729 (defvar ffap-rfc-path | |
730 (concat (ffap-host-to-path "ds.internic.net") "/rfc/rfc%s.txt")) | |
731 (defun ffap-rfc (name) | |
732 (format ffap-rfc-path | |
733 (substring name (match-beginning 1) (match-end 1)))))) | |
14874
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
734 (cons "\\`[^/]*\\'" |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
735 (defun ffap-dired (name) |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
736 (let ((pt (point)) dir try) |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
737 (save-excursion |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
738 (and (progn |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
739 (beginning-of-line) |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
740 (looking-at " *[-d]r[-w][-x][-r][-w][-x][-r][-w][-x] ")) |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
741 (re-search-backward "^ *$" nil t) |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
742 (re-search-forward "^ *\\([^ \t\n:]*\\):\n *total " pt t) |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
743 (file-exists-p |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
744 (setq try |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
745 (expand-file-name |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
746 name |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
747 (buffer-substring |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
748 (match-beginning 1) (match-end 1))))) |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
749 try))))) |
13531 | 750 ) |
14874
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
751 "Alist of \(KEY . FUNCTION\) pairs parsed by `ffap-file-at-point'. |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
752 If string NAME at point (maybe \"\") is not a file or url, these pairs |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
753 specify actions to try creating such a string. A pair matches if either |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
754 KEY is a symbol, and it equals `major-mode', or |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
755 KEY is a string, it should matches NAME as a regexp. |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
756 On a match, \(FUNCTION NAME\) is called and should return a file, an |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
757 url, or nil. If nil, search the alist for further matches.") |
13531 | 758 |
759 (put 'ffap-alist 'risky-local-variable t) | |
760 | |
761 | |
762 ;;; At-Point Functions: | |
763 | |
764 (defvar ffap-string-at-point-mode-alist | |
765 '( | |
14874
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
766 ;; The default, used when the `major-mode' is not found. |
13531 | 767 ;; Slightly controversial decisions: |
768 ;; * strip trailing "@" and ":" | |
769 ;; * no commas (good for latex) | |
14874
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
770 (file "--:$+<>@-Z_a-z~" "<@" "@>;.,!?:") |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
771 ;; An url, or maybe a email/news message-id: |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
772 (url "--:?$+@-Z_a-z~#,%" "^A-Za-z0-9" ":;.,!?") |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
773 ;; Find a string that does *not* contain a colon: |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
774 (nocolon "--9$+<>@-Z_a-z~" "<@" "@>;.,!?") |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
775 ;; A machine: |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
776 (machine "-a-zA-Z0-9." "" ".") |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
777 ;; Mathematica paths: allow backquotes |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
778 (math-mode ",-:$+<>@-Z_a-z~`" "<" "@>;.,!?`:") |
13531 | 779 ) |
14874
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
780 "Alist of \(MODE CHARS BEG END\), where MODE is a symbol, |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
781 possibly a `major-mode' or some symbol internal to ffap |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
782 \(such as 'file, 'url, 'machine, and 'nocolon\). |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
783 `ffap-string-at-point' uses the data fields as follows: |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
784 1. find a maximal string of CHARS around point, |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
785 2. strip BEG chars before point from the beginning, |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
786 3. Strip END chars after point from the end.") |
13531 | 787 |
788 (defvar ffap-string-at-point-region '(1 1) | |
14874
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
789 "List (BEG END), last region returned by `ffap-string-at-point'.") |
13531 | 790 |
791 (defvar ffap-string-at-point nil | |
792 ;; Added at suggestion of RHOGEE (for ff-paths), 7/24/95. | |
14874
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
793 "Last string returned by `ffap-string-at-point'.") |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
794 |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
795 (defun ffap-string-at-point (&optional mode) |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
796 "Return a string of characters from around point. |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
797 MODE (defaults to `major-mode') is a symbol used to lookup string |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
798 syntax parameters in `ffap-string-at-point-mode-alist'. |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
799 If MODE is not found, we fall back on the symbol 'file. |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
800 Sets `ffap-string-at-point' and `ffap-string-at-point-region'." |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
801 (let* ((args |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
802 (cdr |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
803 (or (assq (or mode major-mode) ffap-string-at-point-mode-alist) |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
804 (assq 'file ffap-string-at-point-mode-alist)))) |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
805 (pt (point)) |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
806 (str |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
807 (buffer-substring |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
808 (save-excursion |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
809 (skip-chars-backward (car args)) |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
810 (skip-chars-forward (nth 1 args) pt) |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
811 (setcar ffap-string-at-point-region (point))) |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
812 (save-excursion |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
813 (skip-chars-forward (car args)) |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
814 (skip-chars-backward (nth 2 args) pt) |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
815 (setcar (cdr ffap-string-at-point-region) (point)))))) |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
816 (or ffap-xemacs (set-text-properties 0 (length str) nil str)) |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
817 (setq ffap-string-at-point str))) |
13531 | 818 |
819 (defun ffap-string-around nil | |
820 ;; Sometimes useful to decide how to treat a string. | |
14874
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
821 "Return string of two chars around last `ffap-string-at-point'. |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
822 Assumes the buffer has not changed." |
13531 | 823 (save-excursion |
824 (format "%c%c" | |
825 (progn | |
826 (goto-char (car ffap-string-at-point-region)) | |
827 (preceding-char)) ; maybe 0 | |
828 (progn | |
829 (goto-char (nth 1 ffap-string-at-point-region)) | |
830 (following-char)) ; maybe 0 | |
831 ))) | |
832 | |
14874
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
833 (defun ffap-copy-string-as-kill (&optional mode) |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
834 ;; Requested by MCOOK. Useful? |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
835 "Call `ffap-string-at-point', and copy result to `kill-ring'." |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
836 (interactive) |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
837 (let ((str (ffap-string-at-point mode))) |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
838 (if (equal "" str) |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
839 (message "No string found around point.") |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
840 (kill-new str) |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
841 ;; Older: (apply 'copy-region-as-kill ffap-string-at-point-region) |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
842 (message "Copied to kill ring: %s" str)))) |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
843 |
13531 | 844 (defun ffap-url-at-point nil |
14874
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
845 "Return url from around point if it exists, or nil." |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
846 ;; Could use w3's url-get-url-at-point instead. Both handle "URL:", |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
847 ;; ignore non-relative links, trim punctuation. The other will |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
848 ;; actually look back if point is in whitespace, but I would rather |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
849 ;; ffap be non-rabid in such situations. |
13531 | 850 (and |
851 ffap-url-regexp | |
852 (or | |
853 ;; In a w3 buffer button zone? | |
854 (let (tem) | |
855 (and (eq major-mode 'w3-mode) | |
856 ;; assume: (boundp 'w3-zone-at) (boundp 'w3-zone-data) | |
857 (setq tem (w3-zone-at (point))) | |
858 (consp (setq tem (w3-zone-data tem))) | |
859 (nth 2 tem))) | |
860 ;; Is there a reason not to strip trailing colon? | |
14874
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
861 (let ((name (ffap-string-at-point 'url))) |
13531 | 862 ;; (case-fold-search t), why? |
863 (cond | |
864 ((string-match "^url:" name) (setq name (substring name 4))) | |
865 ((and (string-match "\\`[^:</>@]+@[^:</>@]+[a-zA-Z]\\'" name) | |
866 ;; "foo@bar": could be "mailto" or "news" (a Message-ID). | |
867 ;; If not adorned with "<>", it must be "mailto". | |
14874
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
868 ;; Otherwise could be either, so consult `ffap-foo-at-bar-prefix'. |
13531 | 869 (let ((prefix (if (and (equal (ffap-string-around) "<>") |
870 ;; At least a couple of odd characters: | |
871 (string-match "[$.0-9].*[$.0-9].*@" name)) | |
872 ;; Could be news: | |
14874
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
873 ffap-foo-at-bar-prefix |
13531 | 874 "mailto"))) |
875 (and prefix (setq name (concat prefix ":" name)))))) | |
876 ((ffap-newsgroup-p name) (setq name (concat "news:" name))) | |
877 ((and (string-match "\\`[a-z0-9]+\\'" name) ; <mic> <root> <nobody> | |
878 (equal (ffap-string-around) "<>") | |
879 ;; (ffap-user-p name): | |
880 (not (string-match "~" (expand-file-name (concat "~" name)))) | |
881 ) | |
882 (setq name (concat "mailto:" name))) | |
883 ) | |
884 (and (ffap-url-p name) name) | |
885 )))) | |
886 | |
887 (defvar ffap-gopher-regexp | |
888 "^.*\\<\\(Type\\|Name\\|Path\\|Host\\|Port\\) *= *\\(.*\\) *$" | |
889 "Regexp Matching a line in a gopher bookmark (maybe indented). | |
14874
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
890 The two subexpressions are the KEY and VALUE.") |
13531 | 891 |
892 (defun ffap-gopher-at-point nil | |
893 "If point is inside a gopher bookmark block, return its url." | |
14874
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
894 ;; `gopher-parse-bookmark' from gopher.el is not so robust |
13531 | 895 (save-excursion |
896 (beginning-of-line) | |
897 (if (looking-at ffap-gopher-regexp) | |
898 (progn | |
899 (while (and (looking-at ffap-gopher-regexp) (not (bobp))) | |
900 (forward-line -1)) | |
901 (or (looking-at ffap-gopher-regexp) (forward-line 1)) | |
902 (let ((type "1") name path host (port "70")) | |
903 (while (looking-at ffap-gopher-regexp) | |
904 (let ((var (intern | |
905 (downcase | |
906 (buffer-substring (match-beginning 1) | |
907 (match-end 1))))) | |
908 (val (buffer-substring (match-beginning 2) | |
909 (match-end 2)))) | |
910 (set var val) | |
911 (forward-line 1))) | |
912 (if (and path (string-match "^ftp:.*@" path)) | |
913 (concat "ftp://" | |
914 (substring path 4 (1- (match-end 0))) | |
915 (substring path (match-end 0))) | |
916 (and (= (length type) 1) | |
917 host;; (ffap-machine-p host) | |
918 (concat "gopher://" host | |
919 (if (equal port "70") "" (concat ":" port)) | |
920 "/" type path)))))))) | |
921 | |
922 (defvar ffap-ftp-sans-slash-regexp | |
923 (and | |
924 ffap-ftp-regexp | |
14874
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
925 ;; Note: by now, we know it is not an url. |
13531 | 926 ;; Icky regexp avoids: default: 123: foo::bar cs:pub |
927 ;; It does match on: mic@cs: cs:/pub mathcs.emory.edu: (point at end) | |
928 "\\`\\([^:@]+@[^:@]+:\\|[^@.:]+\\.[^@:]+:\\|[^:]+:[~/]\\)\\([^:]\\|\\'\\)") | |
929 "Strings matching this are coerced to ftp paths by ffap. | |
930 That is, ffap just prepends \"/\". Set to nil to disable.") | |
931 | |
932 (defun ffap-file-at-point nil | |
933 "Return filename from around point if it exists, or nil. | |
934 Existence test is skipped for names that look remote. | |
935 If the filename is not obvious, it also tries `ffap-alist', | |
14874
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
936 which may actually result in an url rather than a filename." |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
937 ;; Note: this function does not need to look for url's, just |
13531 | 938 ;; filenames. On the other hand, it is responsible for converting |
14874
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
939 ;; a pseudo-url "site.com://path" to an ftp path |
13531 | 940 (let* ((case-fold-search t) ; url prefixes are case-insensitive |
941 (data (match-data)) | |
14874
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
942 (string (ffap-string-at-point)) ; uses mode alist |
13531 | 943 (name |
14874
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
944 (or (condition-case nil |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
945 (and (not (string-match "//" string)) ; foo.com://bar |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
946 (substitute-in-file-name string)) |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
947 (error nil)) |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
948 string)) |
13531 | 949 (abs (file-name-absolute-p name)) |
950 (default-directory default-directory)) | |
951 (unwind-protect | |
952 (cond | |
953 ;; Immediate rejects (/ and // are too common in C++): | |
954 ((member name '("" "/" "//")) nil) | |
955 ;; Immediately test local filenames. If default-directory is | |
956 ;; remote, you probably already have a connection. | |
957 ((and (not abs) (ffap-file-exists-string name))) | |
958 ;; Accept remote names without actual checking (too slow): | |
959 ((if abs | |
960 (ffap-file-remote-p name) | |
961 ;; Try adding a leading "/" (common omission in ftp paths): | |
962 (and | |
963 ffap-ftp-sans-slash-regexp | |
964 (string-match ffap-ftp-sans-slash-regexp name) | |
965 (ffap-file-remote-p (concat "/" name))))) | |
966 ;; Ok, not remote, try the existence test even if it is absolute: | |
967 ((and abs (ffap-file-exists-string name))) | |
14874
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
968 ;; If it contains a colon, get rid of it (and return if exists) |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
969 ((and (string-match path-separator name) |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
970 (setq name (ffap-string-at-point 'nocolon)) |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
971 (ffap-file-exists-string name))) |
13531 | 972 ;; File does not exist, try the alist: |
973 ((let ((alist ffap-alist) tem try case-fold-search) | |
974 (while (and alist (not try)) | |
975 (setq tem (car alist) alist (cdr alist)) | |
976 (if (or (eq major-mode (car tem)) | |
977 (and (stringp (car tem)) | |
978 (string-match (car tem) name))) | |
979 (and (setq try (funcall (cdr tem) name)) | |
980 (setq try (or | |
981 (ffap-url-p try) ; not a file! | |
982 (ffap-file-remote-p try) | |
983 (ffap-file-exists-string try)))))) | |
984 try)) | |
985 ;; Alist failed? Try to guess an active remote connection | |
986 ;; from buffer variables, and try once more, both as an | |
987 ;; absolute and relative path on that remote host. | |
988 ((let* (ffap-rfs-regexp ; suppress | |
989 (remote-dir | |
990 (cond | |
991 ((ffap-file-remote-p default-directory)) | |
992 ((and (eq major-mode 'internal-ange-ftp-mode) | |
993 (string-match "^\\*ftp \\(.*\\)@\\(.*\\)\\*$" | |
994 (buffer-name))) | |
995 (concat "/" (substring (buffer-name) 5 -1) ":")) | |
996 ;; This is too often a bad idea: | |
997 ;;((and (eq major-mode 'w3-mode) | |
998 ;; (stringp url-current-server)) | |
999 ;; (host-to-ange-path url-current-server)) | |
1000 ))) | |
1001 (and remote-dir | |
1002 (or | |
1003 (and (string-match "\\`\\(/?~?ftp\\)/" name) | |
1004 (ffap-file-exists-string | |
1005 (ffap-replace-path-component | |
1006 remote-dir (substring name (match-end 1))))) | |
1007 (ffap-file-exists-string | |
1008 (ffap-replace-path-component remote-dir name)))))) | |
1009 ) | |
1010 (store-match-data data)))) | |
1011 | |
1012 | |
1013 ;;; ffap-read-file-or-url: | |
1014 ;; | |
14874
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1015 ;; We want to complete filenames as in read-file-name, but also url's |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1016 ;; which read-file-name-internal would truncate at the "//" string. |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1017 ;; The solution here is to replace read-file-name-internal with |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1018 ;; `ffap-read-file-or-url-internal', which checks the minibuffer |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1019 ;; contents before attempting to complete filenames. |
13531 | 1020 |
1021 (defun ffap-read-file-or-url (prompt guess) | |
14874
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1022 "Read file or url from minibuffer, with PROMPT and initial GUESS." |
13531 | 1023 (or guess (setq guess default-directory)) |
14874
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1024 (let (dir) |
13531 | 1025 ;; Tricky: guess may have or be a local directory, like "w3/w3.elc" |
1026 ;; or "w3/" or "../el/ffap.el" or "../../../" | |
14874
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1027 (or (ffap-url-p guess) |
13531 | 1028 (progn |
1029 (or (ffap-file-remote-p guess) | |
1030 (setq guess (abbreviate-file-name (expand-file-name guess)))) | |
1031 (setq dir (file-name-directory guess)))) | |
14874
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1032 (setq guess |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1033 (completing-read |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1034 prompt |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1035 'ffap-read-file-or-url-internal |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1036 dir |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1037 nil |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1038 (if dir (cons guess (length dir)) guess) |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1039 (list 'file-name-history) |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1040 )) |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1041 ;; Do file substitution like (interactive "F"), suggested by MCOOK. |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1042 (or (ffap-url-p guess) (setq guess (substitute-in-file-name guess))) |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1043 ;; Should not do it on url's, where $ is a common (VMS?) character. |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1044 ;; Note: upcoming url.el package ought to handle this automatically. |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1045 guess)) |
13531 | 1046 |
1047 (defun ffap-read-url-internal (string dir action) | |
14874
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1048 "Complete url's from history, treating given string as valid." |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1049 (let ((hist (ffap-soft-value "url-global-history-hash-table"))) |
13531 | 1050 (cond |
1051 ((not action) | |
1052 (or (try-completion string hist) string)) | |
1053 ((eq action t) | |
1054 (or (all-completions string hist) (list string))) | |
14874
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1055 ;; action == lambda, documented where? Tests whether string is a |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1056 ;; valid "match". Let us always say yes. |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1057 (t t)))) |
13531 | 1058 |
1059 (defun ffap-read-file-or-url-internal (string dir action) | |
1060 (if (ffap-url-p string) | |
1061 (ffap-read-url-internal string dir action) | |
1062 (read-file-name-internal string dir action))) | |
1063 | |
14874
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1064 ;; The rest of this page is just to work with package complete.el. |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1065 ;; This code assumes that you load ffap.el after complete.el. |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1066 ;; |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1067 ;; We must inform complete about whether our completion function |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1068 ;; will do filename style completion. For earlier versions of |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1069 ;; complete.el, this requires a defadvice. For recent versions |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1070 ;; there may be a special variable for this purpose. |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1071 |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1072 (defun ffap-complete-as-file-p nil |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1073 ;; Will `minibuffer-completion-table' complete the minibuffer |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1074 ;; contents as a filename? Assumes the minibuffer is current. |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1075 ;; Note: t and non-nil mean somewhat different reasons. |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1076 (if (eq minibuffer-completion-table 'ffap-read-file-or-url-internal) |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1077 (not (ffap-url-p (buffer-string))) ; t |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1078 (memq minibuffer-completion-table |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1079 '(read-file-name-internal read-directory-name-internal)) ; list |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1080 )) |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1081 |
13531 | 1082 (and |
1083 (featurep 'complete) | |
14874
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1084 (if (boundp 'PC-completion-as-file-name-predicate) |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1085 ;; modern version of complete.el, just set the variable: |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1086 (setq PC-completion-as-file-name-predicate 'ffap-complete-as-file-p) |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1087 (require 'advice) |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1088 (defadvice PC-do-completion (around ffap-fix act) |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1089 "Work with ffap." |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1090 (let ((minibuffer-completion-table |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1091 (if (eq t (ffap-complete-as-file-p)) |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1092 'read-file-name-internal |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1093 minibuffer-completion-table))) |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1094 ad-do-it)))) |
13531 | 1095 |
1096 | |
1097 ;;; Highlighting: | |
1098 ;; | |
1099 ;; Based on overlay highlighting in Emacs 19.28 isearch.el. | |
1100 | |
1101 (defvar ffap-highlight (and window-system t) | |
1102 "If non-nil, ffap highlights the current buffer substring.") | |
1103 | |
14874
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1104 (defvar ffap-highlight-overlay nil "Overlay used by `ffap-highlight'.") |
13531 | 1105 |
1106 (defun ffap-highlight (&optional remove) | |
14874
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1107 "If `ffap-highlight' is set, highlight the guess in this buffer. |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1108 That is, the last buffer substring found by `ffap-string-at-point'. |
13531 | 1109 Optional argument REMOVE means to remove any such highlighting. |
14874
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1110 Uses the face `ffap' if it is defined, or else `highlight'." |
13531 | 1111 (cond |
14874
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1112 (remove (and ffap-highlight-overlay (delete-overlay ffap-highlight-overlay))) |
13531 | 1113 ((not ffap-highlight) nil) |
14874
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1114 (ffap-highlight-overlay |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1115 (move-overlay ffap-highlight-overlay |
13531 | 1116 (car ffap-string-at-point-region) |
1117 (nth 1 ffap-string-at-point-region) | |
1118 (current-buffer))) | |
1119 (t | |
14874
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1120 (setq ffap-highlight-overlay (apply 'make-overlay ffap-string-at-point-region)) |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1121 (overlay-put ffap-highlight-overlay 'face |
13531 | 1122 (if (internal-find-face 'ffap nil) |
1123 'ffap 'highlight))))) | |
14874
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1124 |
13531 | 1125 |
1126 ;;; The big enchilada: | |
1127 | |
1128 (defun ffap-guesser nil | |
14874
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1129 "Return file or url or nil, guessed from text around point." |
13531 | 1130 (or (and ffap-url-regexp |
1131 (ffap-fixup-url (or (ffap-url-at-point) | |
1132 (ffap-gopher-at-point)))) | |
1133 (ffap-file-at-point) ; may yield url! | |
1134 (ffap-fixup-machine (ffap-machine-at-point)))) | |
1135 | |
1136 (defun ffap-prompter (&optional guess) | |
1137 ;; Does guess and prompt step for find-file-at-point. | |
14874
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1138 ;; Extra complication for the temporary highlighting. |
13531 | 1139 (unwind-protect |
1140 (ffap-read-file-or-url | |
1141 (if ffap-url-regexp "Find file or URL: " "Find file: ") | |
1142 (prog1 | |
1143 (setq guess (or guess (ffap-guesser))) | |
14874
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1144 (and guess (ffap-highlight)) |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1145 )) |
13531 | 1146 (ffap-highlight t))) |
1147 | |
1148 ;;;###autoload | |
1149 (defun find-file-at-point (&optional filename) | |
1150 "Find FILENAME (or url), guessing default from text around point. | |
1151 If `ffap-dired-wildcards' is set, wildcard patterns are passed to dired. | |
14874
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1152 See also the functions `ffap-file-at-point', `ffap-url-at-point'. |
13531 | 1153 With a prefix, this command behaves *exactly* like `ffap-file-finder'. |
1154 If `ffap-require-prefix' is set, the prefix meaning is reversed. | |
1155 | |
14874
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1156 See <ftp://ftp.mathcs.emory.edu/pub/mic/emacs/> for latest version." |
13531 | 1157 (interactive) |
1158 (if (and (interactive-p) | |
1159 (if ffap-require-prefix (not current-prefix-arg) | |
1160 current-prefix-arg)) | |
1161 ;; Do exactly the ffap-file-finder command, even the prompting: | |
14874
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1162 (let (current-prefix-arg) ; we already interpreted it |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1163 (call-interactively ffap-file-finder)) |
13531 | 1164 (or filename (setq filename (ffap-prompter))) |
1165 (cond | |
1166 ((ffap-url-p filename) | |
14874
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1167 (let (current-prefix-arg) ; w3 2.3.25 bug, reported by KPC |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1168 (funcall ffap-url-fetcher filename))) |
13531 | 1169 ;; This junk more properly belongs in a modified ffap-file-finder: |
14874
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1170 ((and ffap-dired-wildcards |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1171 (string-match ffap-dired-wildcards filename)) |
13531 | 1172 (dired filename)) |
1173 ((or (not ffap-newfile-prompt) | |
1174 (file-exists-p filename) | |
1175 (y-or-n-p "File does not exist, create buffer? ")) | |
1176 (funcall ffap-file-finder | |
1177 ;; expand-file-name fixes "~/~/.emacs" bug sent by CHUCKR. | |
1178 (expand-file-name filename))) | |
1179 ;; User does not want to find a non-existent file: | |
1180 ((signal 'file-error (list "Opening file buffer" | |
1181 "no such file or directory" | |
1182 filename)))))) | |
1183 | |
1184 ;; M-x shortcut: | |
14874
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1185 ;;###autoload |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1186 (defalias 'ffap 'find-file-at-point) |
13531 | 1187 |
1188 | |
1189 ;;; Menu support: | |
1190 ;; | |
1191 ;; Bind ffap-menu to a key if you want, since it also works in tty mode. | |
1192 ;; Or just use it through the ffap-at-mouse binding (next section). | |
1193 | |
1194 (defvar ffap-menu-regexp nil | |
14874
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1195 "*If non-nil, overrides `ffap-next-regexp' during `ffap-menu'. |
13531 | 1196 Make this more restrictive for faster menu building. |
1197 For example, try \":/\" for url (and some ftp) references.") | |
1198 | |
1199 (defvar ffap-menu-alist nil | |
14874
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1200 "Buffer local cache of menu presented by `ffap-menu'.") |
13531 | 1201 (make-variable-buffer-local 'ffap-menu-alist) |
1202 | |
14874
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1203 (defvar ffap-menu-text-plist |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1204 (and window-system |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1205 ;; These choices emulate goto-addr: |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1206 (if ffap-xemacs |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1207 '(face bold highlight t) ; keymap <map> |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1208 '(face bold mouse-face highlight) ; keymap <mousy-map> |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1209 )) |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1210 "Text properties applied to strings found by `ffap-menu-rescan'. |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1211 These properties may be used to fontify the menu references.") |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1212 |
13531 | 1213 ;;;###autoload |
1214 (defun ffap-menu (&optional rescan) | |
14874
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1215 "Put up a menu of files and urls mentioned in this buffer. |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1216 Then set mark, jump to choice, and try to fetch it. The menu is |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1217 cached in `ffap-menu-alist', and rebuilt by `ffap-menu-rescan'. |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1218 The optional RESCAN argument \(a prefix, interactively\) forces |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1219 a rebuild. Searches with `ffap-menu-regexp'." |
13531 | 1220 (interactive "P") |
1221 ;; (require 'imenu) -- no longer used, but roughly emulated | |
1222 (if (or (not ffap-menu-alist) rescan | |
1223 ;; or if the first entry is wrong: | |
1224 (and ffap-menu-alist | |
1225 (let ((first (car ffap-menu-alist))) | |
1226 (save-excursion | |
1227 (goto-char (cdr first)) | |
1228 (not (equal (car first) (ffap-guesser))))))) | |
1229 (ffap-menu-rescan)) | |
1230 ;; Tail recursive: | |
1231 (ffap-menu-ask | |
1232 (if ffap-url-regexp "Find file or URL" "Find file") | |
1233 (cons (cons "*Rescan Buffer*" -1) ffap-menu-alist) | |
1234 'ffap-menu-cont)) | |
1235 | |
1236 (defun ffap-menu-cont (choice) ; continuation of ffap-menu | |
1237 (if (< (cdr choice) 0) | |
1238 (ffap-menu t) ; *Rescan* | |
1239 (push-mark) | |
1240 (goto-char (cdr choice)) | |
1241 ;; Momentary highlight: | |
1242 (unwind-protect | |
1243 (progn | |
1244 (and ffap-highlight (ffap-guesser) (ffap-highlight)) | |
1245 (sit-for 0) ; display | |
1246 (find-file-at-point (car choice))) | |
1247 (ffap-highlight t)))) | |
1248 | |
1249 (defun ffap-menu-ask (title alist cont) | |
1250 "Prompt from a menu of choices, and then apply some action. | |
1251 Arguments are TITLE, ALIST, and CONT (a continuation). | |
1252 This uses either a menu or the minibuffer depending on invocation. | |
1253 The TITLE string is used as either the prompt or menu title. | |
14874
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1254 Each \(string . data\) ALIST entry defines a choice \(data is ignored\). |
13531 | 1255 Once the user makes a choice, function CONT is applied to the entry. |
1256 Always returns nil." | |
1257 ;; Bug: minibuffer prompting assumes the strings are unique. | |
1258 (let ((choice | |
14874
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1259 (if (and (fboundp 'x-popup-menu) ; Emacs 19 or XEmacs 19.13 |
13531 | 1260 (boundp 'last-nonmenu-event) ; not in XEmacs 19.13 |
1261 (listp last-nonmenu-event)) | |
1262 (x-popup-menu | |
1263 t | |
1264 (list "" | |
1265 (cons title | |
1266 (mapcar | |
1267 (function (lambda (i) (cons (car i) i))) | |
1268 alist)))) | |
14874
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1269 ;; Immediately popup completion buffer: |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1270 (prog1 |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1271 (let ((minibuffer-setup-hook 'minibuffer-completion-help)) |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1272 ;; BUG: this code assumes that "" is not a valid choice |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1273 (completing-read |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1274 (format "%s (default %s): " title (car (car alist))) |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1275 alist nil t |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1276 ;; (cons (car (car alist)) 0) |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1277 nil |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1278 )) |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1279 ;; Redraw original screen: |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1280 (sit-for 0))))) |
13531 | 1281 ;; Defaulting: convert "" to (car (car alist)) |
1282 (and (equal choice "") (setq choice (car (car alist)))) | |
1283 (and (stringp choice) (setq choice (assoc choice alist))) | |
1284 (if choice (funcall cont choice) (message "No choice made!"))) | |
1285 nil) ; return nothing | |
1286 | |
1287 (defun ffap-menu-rescan nil | |
14874
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1288 "Search buffer for `ffap-menu-regexp' to build `ffap-menu-alist'. |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1289 Applies `ffap-menu-text-plist' text properties at all matches." |
13531 | 1290 (interactive) |
1291 (let ((ffap-next-regexp (or ffap-menu-regexp ffap-next-regexp)) | |
14874
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1292 (range (- (point-max) (point-min))) item |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1293 buffer-read-only ; to set text-properties |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1294 ;; Avoid repeated searches of the *mode-alist: |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1295 (major-mode (if (assq major-mode ffap-string-at-point-mode-alist) |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1296 major-mode |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1297 'file)) |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1298 ) |
13531 | 1299 (setq ffap-menu-alist nil) |
1300 (save-excursion | |
1301 (goto-char (point-min)) | |
1302 (while (setq item (ffap-next-guess)) | |
1303 (setq ffap-menu-alist (cons (cons item (point)) ffap-menu-alist)) | |
14874
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1304 (add-text-properties (car ffap-string-at-point-region) (point) |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1305 ffap-menu-text-plist) |
13531 | 1306 (message "Scanning...%2d%% <%s>" |
1307 (/ (* 100 (- (point) (point-min))) range) item)))) | |
1308 (message "Scanning...done") | |
1309 ;; Remove duplicates. | |
1310 (setq ffap-menu-alist ; sort by item | |
1311 (sort ffap-menu-alist | |
1312 (function | |
1313 (lambda (a b) (string-lessp (car a) (car b)))))) | |
1314 (let ((ptr ffap-menu-alist)) | |
1315 (while (cdr ptr) | |
1316 (if (equal (car (car ptr)) (car (car (cdr ptr)))) | |
1317 (setcdr ptr (cdr (cdr ptr))) | |
1318 (setq ptr (cdr ptr))))) | |
1319 (setq ffap-menu-alist ; sort by position | |
1320 (sort ffap-menu-alist | |
1321 (function | |
1322 (lambda (a b) (< (cdr a) (cdr b))))))) | |
1323 | |
1324 | |
1325 ;;; Mouse Support: | |
1326 ;; | |
14874
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1327 ;; See the suggested binding in ffap-bindings (near eof). |
13531 | 1328 |
1329 (defvar ffap-at-mouse-fallback 'ffap-menu | |
14874
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1330 "Invoked by `ffap-at-mouse' if no file or url at click. |
13531 | 1331 A command symbol, or nil for nothing.") |
1332 (put 'ffap-at-mouse-fallback 'risky-local-variable t) | |
1333 | |
1334 (defun ffap-at-mouse (e) | |
14874
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1335 "Find file or url guessed from text around mouse point. |
13531 | 1336 If none is found, call `ffap-at-mouse-fallback'." |
1337 (interactive "e") | |
1338 (let ((guess | |
1339 ;; Maybe less surprising without the save-excursion? | |
1340 (save-excursion | |
1341 (mouse-set-point e) | |
1342 ;; Would like to do nothing unless click was *on* text. How? | |
1343 ;; (cdr (posn-col-row (event-start e))) is always same as | |
1344 ;; current column. For posn-x-y, need pixel-width! | |
1345 (ffap-guesser)))) | |
1346 (cond | |
1347 (guess | |
1348 (ffap-highlight) | |
1349 (unwind-protect | |
1350 (progn | |
1351 (sit-for 0) ; display | |
1352 (message "Guessing `%s'" guess) | |
1353 (find-file-at-point guess)) | |
1354 (ffap-highlight t))) | |
1355 ((and (interactive-p) | |
1356 ffap-at-mouse-fallback) | |
1357 (call-interactively ffap-at-mouse-fallback)) | |
1358 ((message "No file or URL found at mouse click."))))) | |
1359 | |
1360 | |
1361 ;;; ffap-other-* commands | |
14874
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1362 ;; Suggested by KPC. |
13531 | 1363 |
1364 (defun ffap-other-window nil | |
14874
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1365 "Like `ffap', but put buffer in another window." |
13531 | 1366 (interactive) |
1367 (switch-to-buffer-other-window | |
1368 (save-window-excursion (call-interactively 'ffap) (current-buffer)))) | |
1369 | |
1370 (defun ffap-other-frame nil | |
14874
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1371 "Like `ffap', but put buffer in another frame." |
13531 | 1372 (interactive) |
1373 (switch-to-buffer-other-frame | |
1374 (save-window-excursion (call-interactively 'ffap) (current-buffer)))) | |
1375 | |
1376 | |
14874
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1377 ;;; Bug Reporter: |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1378 |
13531 | 1379 (defun ffap-bug nil |
14874
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1380 "Submit a bug report for the ffap package." |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1381 ;; Important: keep the version string here in synch with that at top |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1382 ;; of file! Could use lisp-mnt from Emacs 19, but that would depend |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1383 ;; on being able to find the ffap.el source file. |
13531 | 1384 (interactive) |
1385 (require 'reporter) | |
1386 (let ((reporter-prompt-for-summary-p t)) | |
1387 (reporter-submit-bug-report | |
14874
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1388 "Michelangelo Grigni <mic@mathcs.emory.edu>" |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1389 "ffap 1.6" |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1390 (mapcar 'intern (all-completions "ffap-" obarray 'boundp))))) |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1391 |
13531 | 1392 (fset 'ffap-submit-bug 'ffap-bug) ; another likely name |
1393 | |
1394 | |
14874
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1395 ;;; Hooks for Gnus, VM, Rmail: |
13531 | 1396 ;; |
14874
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1397 ;; If you do not like these bindings, write versions with whatever |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1398 ;; bindings you would prefer. |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1399 |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1400 (defun ffap-ro-mode-hook nil |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1401 "Bind `ffap-next' and `ffap-menu' to M-l and M-m, resp." |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1402 (local-set-key "\M-l" 'ffap-next) |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1403 (local-set-key "\M-m" 'ffap-menu) |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1404 ) |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1405 |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1406 (defun ffap-gnus-hook nil |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1407 "Bind `ffap-gnus-next' and `ffap-gnus-menu' to M-l and M-m, resp." |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1408 (set (make-local-variable 'ffap-foo-at-bar-prefix) "news") ; message-id's |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1409 ;; Note "l", "L", "m", "M" are taken: |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1410 (local-set-key "\M-l" 'ffap-gnus-next) |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1411 (local-set-key "\M-m" 'ffap-gnus-menu)) |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1412 |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1413 (defun ffap-gnus-wrapper (form) ; used by both commands below |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1414 (and (eq (current-buffer) (get-buffer gnus-summary-buffer)) |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1415 (gnus-summary-select-article)) ; get article of current line |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1416 ;; Preserve selected buffer, but do not do save-window-excursion, |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1417 ;; since we want to see any window created by the form. Temporarily |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1418 ;; select the article buffer, so we can see any point movement. |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1419 (let ((sb (window-buffer (selected-window)))) |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1420 (gnus-configure-windows 'article) |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1421 (pop-to-buffer gnus-article-buffer) |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1422 (widen) |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1423 ;; Skip headers for ffap-gnus-next (which will wrap around) |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1424 (if (eq (point) (point-min)) (search-forward "\n\n" nil t)) |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1425 (unwind-protect |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1426 (eval form) |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1427 (pop-to-buffer sb)))) |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1428 |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1429 (defun ffap-gnus-next nil |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1430 "Run `ffap-next' in the gnus article buffer." |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1431 (interactive) (ffap-gnus-wrapper '(ffap-next nil t))) |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1432 |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1433 (defun ffap-gnus-menu nil |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1434 "Run `ffap-menu' in the gnus article buffer." |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1435 (interactive) (ffap-gnus-wrapper '(ffap-menu))) |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1436 |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1437 |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1438 ;;; ffap-bindings: offer default global bindings |
13531 | 1439 |
14874
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1440 (defvar ffap-bindings |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1441 (nconc |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1442 (cond |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1443 ((not (eq window-system 'x)) |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1444 nil) |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1445 ;; GNU coding standards say packages should not bind S-mouse-*. |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1446 ;; Is it ok to simply suggest such a binding to the user? |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1447 (ffap-xemacs |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1448 '((global-set-key '(shift button3) 'ffap-at-mouse))) |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1449 (t |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1450 '((global-set-key [S-down-mouse-3] 'ffap-at-mouse)))) |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1451 '( |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1452 (global-set-key "\C-x\C-f" 'find-file-at-point) |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1453 (global-set-key "\C-x4f" 'ffap-other-window) |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1454 (global-set-key "\C-x5f" 'ffap-other-frame) |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1455 (add-hook 'gnus-summary-mode-hook 'ffap-gnus-hook) |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1456 (add-hook 'gnus-article-mode-hook 'ffap-gnus-hook) |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1457 (add-hook 'vm-mode-hook 'ffap-ro-mode-hook) |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1458 (add-hook 'rmail-mode-hook 'ffap-ro-mode-hook) |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1459 ;; (setq dired-x-hands-off-my-keys t) ; the default |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1460 )) |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1461 "List of forms evaluated by function `ffap-bindings'. |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1462 A reasonable ffap installation needs just these two lines: |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1463 (require 'ffap) |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1464 (ffap-bindings) |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1465 These are only suggestions, they may be modified or ignored.") |
13531 | 1466 |
14874
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1467 (defun ffap-bindings nil |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1468 "Evaluate the forms in variable `ffap-bindings'." |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1469 (eval (cons 'progn ffap-bindings))) |
13531 | 1470 |
14874
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1471 ;; Example modifications: |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1472 ;; |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1473 ;; (setq ffap-alist ; remove a feature in `ffap-alist' |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1474 ;; (delete (assoc 'c-mode ffap-alist) ffap-alist)) |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1475 ;; |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1476 ;; (setq ffap-alist ; add something to `ffap-alist' |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1477 ;; (cons |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1478 ;; (cons "^[Yy][Ss][Nn][0-9]+$" |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1479 ;; (defun ffap-ysn (name) |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1480 ;; (concat |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1481 ;; "http://snorri.chem.washington.edu/ysnarchive/issuefiles/" |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1482 ;; (substring name 3) ".html"))) |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1483 ;; ffap-alist)) |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1484 |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1485 |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1486 ;;; XEmacs: |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1487 ;; Extended suppport in another file, for copyright reasons. |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1488 (or (not ffap-xemacs) |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1489 (load "ffap-xe" t t) |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1490 (message "ffap warning: ffap-xe.el not found")) |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1491 |
cecaaaec6fd6
Doc fixes. Reorganized. Retired v18 support.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1492 |
13531 | 1493 ;;; ffap.el ends here |