Mercurial > emacs
annotate lisp/goto-addr.el @ 13696:f89aa5a5c485
* etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
(gperf): Added keywords for Objective C and GNU macros.
(sym_type): Added values to account for Objective C and GNU macros.
(begtk): The '@' character can start a token.
(objdef, methodlen, objtag): New variables for Objective C.
(consider_token, C_entries): Added code for Objective C.
(plain_C_suffixes): Add .m and .lm for Objective C.
(Yacc_suffixes): Add .ym for Objective yacc.
(GROW_LINEBUFFER): New macro.
(consider_token, C_entries, Pascal_functions): Use the new macro.
(consider_token): Take one more argument. Caller changed.
(consider_token): Use the hashing function to spot GNU macros.
(C_entries): Consider // as a comment start even in plain C for
the sake of Objective C parsing.
(pfnote): Don't make a tag for ctags if there is no name.
(getit, Asm_labels, Perl_functions, Pascal_functions, L_getit,
get_scheme, prolog_getit): Name the tag in ctags mode.
(pfnote): Truncate ctags lines to 50 chars, like it worked once.
(Perl_interpreters): Accept "@PERL@" as an interpreter.
(suggest_asking_for_help): New function.
(main, get_language_from_name): Use suggest_asking_for_help.
(main): Let get_language_from_name make language existence check.
(streq, strneq): Check the arguments #if DEBUG.
author | Francesco Potortì <pot@gnu.org> |
---|---|
date | Thu, 07 Dec 1995 09:10:54 +0000 |
parents | 06e46fbae7f0 |
children | f6fa5b68f9c7 |
rev | line source |
---|---|
13208 | 1 ;;; goto-addr.el --- click to browse URL or to send to e-mail address |
2 ;; Copyright (C) 1995 Free Software Foundation, Inc. | |
3 | |
13550
06e46fbae7f0
(goto-address-highlight-p): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
13208
diff
changeset
|
4 ;; Author: Eric Ding <ericding@mit.edu> |
13208 | 5 ;; Maintainer: Eric Ding <ericding@mit.edu> |
6 ;; Created: 15 Aug 1995 | |
7 ;; Keywords: mh-e, www, mouse, mail | |
8 | |
9 ;; This file is part of GNU Emacs. | |
10 | |
11 ;; GNU Emacs is free software; you can redistribute it and/or modify | |
12 ;; it under the terms of the GNU General Public License as published by | |
13 ;; the Free Software Foundation; either version 2, or (at your option) | |
14 ;; any later version. | |
15 | |
16 ;; GNU Emacs is distributed in the hope that it will be useful, | |
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
19 ;; GNU General Public License for more details. | |
20 | |
21 ;; You should have received a copy of the GNU General Public License | |
22 ;; along with GNU Emacs; see the file COPYING. If not, write to | |
23 ;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. | |
24 | |
25 ;;; Commentary: | |
26 | |
27 ;; This package allows you to click or hit a key sequence while on a | |
28 ;; URL or e-mail address, and either load the URL into a browser of | |
29 ;; your choice using the browse-url package, or if it's an e-mail | |
30 ;; address, to send an e-mail to that address. By default, we bind to | |
13550
06e46fbae7f0
(goto-address-highlight-p): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
13208
diff
changeset
|
31 ;; the [S-mouse-2] and the [C-c return] key sequences. |
13208 | 32 |
33 ;; INSTALLATION | |
34 ;; | |
13550
06e46fbae7f0
(goto-address-highlight-p): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
13208
diff
changeset
|
35 ;; To use goto-address in a particular mode (for example, while |
06e46fbae7f0
(goto-address-highlight-p): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
13208
diff
changeset
|
36 ;; reading mail in mh-e), add something like this in your .emacs file: |
13208 | 37 ;; |
38 ;; (add-hook 'mh-show-mode-hook 'goto-address) | |
39 ;; | |
40 ;; By default, goto-address now sends using `mail' instead of `mh-send'. | |
41 ;; To use mh-e to send mail, add the following to your .emacs file: | |
42 ;; | |
43 ;; (setq goto-address-mail-method 'goto-address-send-using-mhe) | |
44 ;; | |
45 ;; To rebind, for example, the mouse click method to [mouse-2] in | |
46 ;; mh-show-mode, add the following (instead of the first add-hook example | |
47 ;; above) to your .emacs file: | |
48 ;; | |
49 ;; (defun my-goto-address () | |
50 ;; (goto-address) | |
13550
06e46fbae7f0
(goto-address-highlight-p): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
13208
diff
changeset
|
51 ;; (local-unset-key [S-mouse-2]) |
13208 | 52 ;; (local-set-key [mouse-2] 'goto-address-at-mouse)) |
53 ;; | |
54 ;; (add-hook 'mh-show-mode-hook 'my-goto-address) | |
55 ;; | |
56 ;; [mouse-2] is not the default mouse binding because I use goto-address in | |
57 ;; some editable buffers, where [mouse-2] means mouse-yank-at-click, as well | |
58 ;; as in some modes where [mouse-2] is bound to other useful functions. | |
59 | |
60 ;; BUG REPORTS | |
61 ;; | |
62 ;; Please send bug reports to me at ericding@mit.edu. | |
63 | |
64 ;; Known bugs/features: | |
65 ;; * goto-address-mail-regexp only catches foo@bar.org style addressing, | |
66 ;; not stuff like X.400 addresses, etc. | |
67 ;; * regexp also catches Message-Id line, since it is in the format of | |
68 ;; an Internet e-mail address (like Compuserve addresses) | |
69 ;; * If show buffer is fontified after goto-address-fontify is run | |
70 ;; (say, using font-lock-fontify-buffer), then font-lock face will | |
71 ;; override goto-address faces. | |
72 | |
73 ;;; Code: | |
74 | |
75 (require 'browse-url) | |
76 | |
13550
06e46fbae7f0
(goto-address-highlight-p): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
13208
diff
changeset
|
77 ;;; I don't expect users to want fontify'ing without highlighting. |
13208 | 78 (defvar goto-address-fontify-p t |
13550
06e46fbae7f0
(goto-address-highlight-p): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
13208
diff
changeset
|
79 "*If t, URL's and e-mail addresses in buffer are fontified. |
06e46fbae7f0
(goto-address-highlight-p): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
13208
diff
changeset
|
80 But only if `goto-address-highlight-p' is also non-nil.") |
06e46fbae7f0
(goto-address-highlight-p): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
13208
diff
changeset
|
81 |
06e46fbae7f0
(goto-address-highlight-p): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
13208
diff
changeset
|
82 (defvar goto-address-highlight-p t |
06e46fbae7f0
(goto-address-highlight-p): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
13208
diff
changeset
|
83 "*If t, URL's and e-mail addresses in buffer are highlighted.") |
13208 | 84 |
85 (defvar goto-address-fontify-maximum-size 30000 | |
13550
06e46fbae7f0
(goto-address-highlight-p): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
13208
diff
changeset
|
86 "*Maximum size of file in which to fontify and/or highlight URL's.") |
13208 | 87 |
88 (defvar goto-address-mail-regexp | |
89 "[-a-zA-Z0-9._]+@\\([-a-zA-z0-9_]+\\.\\)+[a-zA-Z0-9]+" | |
90 "A regular expression probably matching an e-mail address.") | |
91 | |
92 (defvar goto-address-url-regexp | |
93 (concat "\\b\\(s?https?\\|ftp\\|file\\|gopher\\|news\\|" | |
94 "telnet\\|wais\\):\\(//[-a-zA-Z0-9_.]+:" | |
95 "[0-9]*\\)?[-a-zA-Z0-9_=?#$@~`%&*+|\\/.,]*" | |
96 "[-a-zA-Z0-9_=#$@~`%&*+|\\/]") | |
97 "A regular expression probably matching a URL.") | |
98 | |
99 (defvar goto-address-mail-method | |
100 'goto-address-send-using-mail | |
101 "*Function to compose mail. | |
102 Two pre-made functions are `goto-address-send-using-mail' (sendmail); | |
103 and `goto-address-send-using-mhe' (MH-E).") | |
104 | |
105 (defun goto-address-fontify () | |
13550
06e46fbae7f0
(goto-address-highlight-p): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
13208
diff
changeset
|
106 "Fontify the URL's and e-mail addresses in the current buffer. |
06e46fbae7f0
(goto-address-highlight-p): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
13208
diff
changeset
|
107 This function implements `goto-address-highlight-p' |
06e46fbae7f0
(goto-address-highlight-p): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
13208
diff
changeset
|
108 and `goto-address-fontify-p'." |
13208 | 109 (save-excursion |
110 (let ((inhibit-read-only t) | |
13550
06e46fbae7f0
(goto-address-highlight-p): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
13208
diff
changeset
|
111 (inhibit-point-motion-hooks t) |
13208 | 112 (modified (buffer-modified-p))) |
113 (goto-char (point-min)) | |
114 (if (< (- (point-max) (point)) goto-address-fontify-maximum-size) | |
115 (progn | |
116 (while (re-search-forward goto-address-url-regexp nil t) | |
13550
06e46fbae7f0
(goto-address-highlight-p): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
13208
diff
changeset
|
117 (progn |
06e46fbae7f0
(goto-address-highlight-p): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
13208
diff
changeset
|
118 (goto-char (match-end 0)) |
06e46fbae7f0
(goto-address-highlight-p): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
13208
diff
changeset
|
119 (and goto-address-fontify-p |
13208 | 120 (put-text-property (match-beginning 0) (match-end 0) |
13550
06e46fbae7f0
(goto-address-highlight-p): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
13208
diff
changeset
|
121 'face 'bold)) |
06e46fbae7f0
(goto-address-highlight-p): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
13208
diff
changeset
|
122 (put-text-property (match-beginning 0) (match-end 0) |
06e46fbae7f0
(goto-address-highlight-p): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
13208
diff
changeset
|
123 'mouse-face 'highlight))) |
13208 | 124 (goto-char (point-min)) |
125 (while (re-search-forward goto-address-mail-regexp nil t) | |
13550
06e46fbae7f0
(goto-address-highlight-p): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
13208
diff
changeset
|
126 (progn |
06e46fbae7f0
(goto-address-highlight-p): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
13208
diff
changeset
|
127 (goto-char (match-end 0)) |
06e46fbae7f0
(goto-address-highlight-p): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
13208
diff
changeset
|
128 (and goto-address-fontify-p |
13208 | 129 (put-text-property (match-beginning 0) (match-end 0) |
13550
06e46fbae7f0
(goto-address-highlight-p): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
13208
diff
changeset
|
130 'face 'italic)) |
06e46fbae7f0
(goto-address-highlight-p): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
13208
diff
changeset
|
131 (put-text-property (match-beginning 0) (match-end 0) |
06e46fbae7f0
(goto-address-highlight-p): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
13208
diff
changeset
|
132 'mouse-face 'secondary-selection))))) |
13208 | 133 (and (buffer-modified-p) |
134 (not modified) | |
135 (set-buffer-modified-p nil))))) | |
136 | |
137 ;;; code to find and goto addresses; much of this has been blatantly | |
138 ;;; snarfed from browse-url.el | |
139 | |
140 (defun goto-address-at-mouse (event) | |
141 "Send to the e-mail address or load the URL clicked with the mouse. | |
142 Send mail to address at position of mouse click. See documentation for | |
143 `goto-address-find-address-at-point'. If no address is found | |
144 there, then load the URL at or before the position of the mouse click." | |
145 (interactive "e") | |
146 (save-excursion | |
147 (let ((posn (event-start event))) | |
148 (set-buffer (window-buffer (posn-window posn))) | |
149 (goto-char (posn-point posn)) | |
150 (let ((address | |
151 (save-excursion (goto-address-find-address-at-point)))) | |
152 (if (string-equal address "") | |
153 (let ((url (browse-url-url-at-point))) | |
154 (if (string-equal url "") | |
155 (error "No e-mail address or URL found") | |
156 (funcall browse-url-browser-function url))) | |
157 (funcall goto-address-mail-method address)))))) | |
158 | |
159 (defun goto-address-at-point () | |
160 "Send to the e-mail address or load the URL at point. | |
161 Send mail to address at point. See documentation for | |
162 `goto-address-find-address-at-point'. If no address is found | |
163 there, then load the URL at or before point." | |
164 (interactive) | |
165 (save-excursion | |
166 (let ((address (save-excursion (goto-address-find-address-at-point)))) | |
167 (if (string-equal address "") | |
168 (let ((url (browse-url-url-at-point))) | |
169 (if (string-equal url "") | |
170 (error "No e-mail address or URL found") | |
171 (funcall browse-url-browser-function url))) | |
172 (funcall goto-address-mail-method address))))) | |
173 | |
174 (defun goto-address-find-address-at-point () | |
175 "Find e-mail address around or before point. | |
176 Then search backwards to beginning of line for the start of an e-mail | |
177 address. If no e-mail address found, return the empty string." | |
178 (let ((bol (save-excursion (beginning-of-line) (point)))) | |
179 (re-search-backward "[^-_A-z0-9.@]" bol 'lim) | |
180 (if (or (looking-at goto-address-mail-regexp) ; already at start | |
181 (let ((eol (save-excursion (end-of-line) (point)))) | |
182 (and (re-search-forward goto-address-mail-regexp eol 'lim) | |
183 (goto-char (match-beginning 0))))) | |
184 (buffer-substring (match-beginning 0) (match-end 0)) | |
185 ""))) | |
186 | |
187 (defun goto-address-send-using-mhe (to) | |
188 (mh-find-path) | |
189 (let ((cc (mh-read-address "Cc: ")) | |
190 (subject (read-string "Subject: ")) | |
191 (config (current-window-configuration))) | |
192 (delete-other-windows) | |
193 (mh-send-sub to cc subject config))) | |
194 | |
195 (defun goto-address-send-using-mail (to) | |
196 (mail-other-window nil to) | |
197 (and (goto-char (point-min)) | |
198 (end-of-line 2))) | |
199 | |
13550
06e46fbae7f0
(goto-address-highlight-p): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
13208
diff
changeset
|
200 ;;;###autoload |
13208 | 201 (defun goto-address () |
13550
06e46fbae7f0
(goto-address-highlight-p): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
13208
diff
changeset
|
202 "Sets up goto-address functionality in the current buffer. |
06e46fbae7f0
(goto-address-highlight-p): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
13208
diff
changeset
|
203 Allows user to use mouse/keyboard command to click to go to a URL |
06e46fbae7f0
(goto-address-highlight-p): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
13208
diff
changeset
|
204 or to send e-mail. |
06e46fbae7f0
(goto-address-highlight-p): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
13208
diff
changeset
|
205 By default, goto-address binds to S-mouse-2 and C-c RET. |
06e46fbae7f0
(goto-address-highlight-p): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
13208
diff
changeset
|
206 |
06e46fbae7f0
(goto-address-highlight-p): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
13208
diff
changeset
|
207 Also fontifies the buffer appropriately (see `goto-address-fontify-p' and |
06e46fbae7f0
(goto-address-highlight-p): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
13208
diff
changeset
|
208 `goto-address-highlight-p' for more information)." |
13208 | 209 (interactive) |
13550
06e46fbae7f0
(goto-address-highlight-p): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
13208
diff
changeset
|
210 (local-set-key [S-mouse-2] 'goto-address-at-mouse) |
13208 | 211 (local-set-key "\C-c\r" 'goto-address-at-point) |
13550
06e46fbae7f0
(goto-address-highlight-p): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
13208
diff
changeset
|
212 (if goto-address-highlight-p |
13208 | 213 (goto-address-fontify))) |
214 | |
215 (provide 'goto-addr) | |
216 | |
217 ;;; goto-addr.el ends here. |