Mercurial > emacs
annotate lisp/url/url-vars.el @ 95164:61bc3b29f9bf
Fix whitespace in previous.
author | Glenn Morris <rgm@gnu.org> |
---|---|
date | Wed, 21 May 2008 04:01:12 +0000 |
parents | 8259d0d8e107 |
children | 7369ded3b436 |
rev | line source |
---|---|
54695 | 1 ;;; url-vars.el --- Variables for Uniform Resource Locator tool |
57614 | 2 |
64748
875dcc490074
Update years in copyright notice; nfc.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
64084
diff
changeset
|
3 ;; Copyright (C) 1996, 1997, 1998, 1999, 2001, 2004, |
79720 | 4 ;; 2005, 2006, 2007, 2008 Free Software Foundation, Inc. |
57614 | 5 |
54695 | 6 ;; Keywords: comm, data, processes, hypermedia |
7 | |
57614 | 8 ;; This file is part of GNU Emacs. |
9 | |
94668
8259d0d8e107
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
94429
diff
changeset
|
10 ;; GNU Emacs is free software: you can redistribute it and/or modify |
57614 | 11 ;; it under the terms of the GNU General Public License as published by |
94668
8259d0d8e107
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
94429
diff
changeset
|
12 ;; the Free Software Foundation, either version 3 of the License, or |
8259d0d8e107
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
94429
diff
changeset
|
13 ;; (at your option) any later version. |
57614 | 14 |
15 ;; GNU Emacs is distributed in the hope that it will be useful, | |
16 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
18 ;; GNU General Public License for more details. | |
19 | |
20 ;; You should have received a copy of the GNU General Public License | |
94668
8259d0d8e107
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
94429
diff
changeset
|
21 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. |
57614 | 22 |
23 ;;; Code: | |
54695 | 24 |
25 (require 'mm-util) | |
26 | |
54770
e8824c4f5f7e
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-196
Miles Bader <miles@gnu.org>
parents:
54699
diff
changeset
|
27 (defconst url-version "Emacs" |
54695 | 28 "Version number of URL package.") |
29 | |
30 (defgroup url nil | |
63993
ef9f3b48923d
(url, url-file, url-cache, url-mime, url-hairy): Finish `defgroup' description
Juanma Barranquero <lekktu@gmail.com>
parents:
63619
diff
changeset
|
31 "Uniform Resource Locator tool." |
59996
aac0a33f5772
Change release version from 21.4 to 22.1 throughout.
Kim F. Storm <storm@cua.dk>
parents:
57614
diff
changeset
|
32 :version "22.1" |
54695 | 33 :group 'hypermedia) |
34 | |
35 (defgroup url-file nil | |
63993
ef9f3b48923d
(url, url-file, url-cache, url-mime, url-hairy): Finish `defgroup' description
Juanma Barranquero <lekktu@gmail.com>
parents:
63619
diff
changeset
|
36 "URL storage." |
54695 | 37 :prefix "url-" |
38 :group 'url) | |
39 | |
40 (defgroup url-cache nil | |
63993
ef9f3b48923d
(url, url-file, url-cache, url-mime, url-hairy): Finish `defgroup' description
Juanma Barranquero <lekktu@gmail.com>
parents:
63619
diff
changeset
|
41 "URL cache." |
54695 | 42 :prefix "url-" |
43 :prefix "url-cache-" | |
44 :group 'url) | |
45 | |
46 (defgroup url-mime nil | |
63993
ef9f3b48923d
(url, url-file, url-cache, url-mime, url-hairy): Finish `defgroup' description
Juanma Barranquero <lekktu@gmail.com>
parents:
63619
diff
changeset
|
47 "MIME options of URL." |
54695 | 48 :prefix "url-" |
49 :group 'url) | |
50 | |
51 (defgroup url-hairy nil | |
63993
ef9f3b48923d
(url, url-file, url-cache, url-mime, url-hairy): Finish `defgroup' description
Juanma Barranquero <lekktu@gmail.com>
parents:
63619
diff
changeset
|
52 "Hairy options of URL." |
54695 | 53 :prefix "url-" |
54 :group 'url) | |
55 | |
56 | |
57 (defvar url-current-object nil | |
58 "A parsed representation of the current url.") | |
59 | |
60 (defvar url-current-mime-headers nil | |
61 "A parsed representation of the MIME headers for the current url.") | |
62 | |
84930
41b075c0a949
(top): Use `mapc' rather than `mapcar'.
Juanma Barranquero <lekktu@gmail.com>
parents:
78222
diff
changeset
|
63 (mapc 'make-variable-buffer-local |
41b075c0a949
(top): Use `mapc' rather than `mapcar'.
Juanma Barranquero <lekktu@gmail.com>
parents:
78222
diff
changeset
|
64 '( |
41b075c0a949
(top): Use `mapc' rather than `mapcar'.
Juanma Barranquero <lekktu@gmail.com>
parents:
78222
diff
changeset
|
65 url-current-object |
41b075c0a949
(top): Use `mapc' rather than `mapcar'.
Juanma Barranquero <lekktu@gmail.com>
parents:
78222
diff
changeset
|
66 url-current-referer |
41b075c0a949
(top): Use `mapc' rather than `mapcar'.
Juanma Barranquero <lekktu@gmail.com>
parents:
78222
diff
changeset
|
67 url-current-mime-headers |
41b075c0a949
(top): Use `mapc' rather than `mapcar'.
Juanma Barranquero <lekktu@gmail.com>
parents:
78222
diff
changeset
|
68 )) |
54695 | 69 |
70 (defcustom url-honor-refresh-requests t | |
71 "*Whether to do automatic page reloads. | |
72 These are done at the request of the document author or the server via | |
73 the `Refresh' header in an HTTP response. If nil, no refresh | |
74 requests will be honored. If t, all refresh requests will be honored. | |
75 If non-nil and not t, the user will be asked for each refresh | |
76 request." | |
77 :type '(choice (const :tag "off" nil) | |
78 (const :tag "on" t) | |
79 (const :tag "ask" 'ask)) | |
80 :group 'url-hairy) | |
81 | |
82 (defcustom url-automatic-caching nil | |
83 "*If non-nil, all documents will be automatically cached to the local disk." | |
84 :type 'boolean | |
85 :group 'url-cache) | |
86 | |
87 ;; Fixme: sanitize this. | |
88 (defcustom url-cache-expired | |
89 (lambda (t1 t2) (>= (- (car t2) (car t1)) 5)) | |
90 "*A function determining if a cached item has expired. | |
91 It takes two times (numbers) as its arguments, and returns non-nil if | |
92 the second time is 'too old' when compared to the first time." | |
93 :type 'function | |
94 :group 'url-cache) | |
95 | |
54804
2f011866477f
(cl): Don't require.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54770
diff
changeset
|
96 (defconst url-bug-address "bug-gnu-emacs@gnu.org" |
54695 | 97 "Where to send bug reports.") |
98 | |
99 (defcustom url-personal-mail-address nil | |
100 "*Your full email address. | |
101 This is what is sent to HTTP servers as the FROM field in an HTTP | |
102 request." | |
103 :type '(choice (const :tag "Unspecified" nil) string) | |
104 :group 'url) | |
105 | |
106 (defcustom url-directory-index-file "index.html" | |
107 "*The filename to look for when indexing a directory. | |
108 If this file exists, and is readable, then it will be viewed instead of | |
109 using `dired' to view the directory." | |
110 :type 'string | |
111 :group 'url-file) | |
112 | |
113 (defcustom url-privacy-level '(email) | |
68121
0c55f53b51e6
(url-privacy-level): Add setter.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65559
diff
changeset
|
114 "How private you want your requests to be. |
54695 | 115 HTTP has header fields for various information about the user, including |
116 operating system information, email addresses, the last page you visited, etc. | |
117 This variable controls how much of this information is sent. | |
118 | |
119 This should a symbol or a list. | |
120 Valid values if a symbol are: | |
121 none -- Send all information | |
122 low -- Don't send the last location | |
123 high -- Don't send the email address or last location | |
124 paranoid -- Don't send anything | |
125 | |
126 If a list, this should be a list of symbols of what NOT to send. | |
127 Valid symbols are: | |
128 email -- the email address | |
129 os -- the operating system info | |
130 lastloc -- the last location | |
131 agent -- Do not send the User-Agent string | |
132 cookie -- never accept HTTP cookies | |
133 | |
134 Samples: | |
135 | |
136 (setq url-privacy-level 'high) | |
137 (setq url-privacy-level '(email lastloc)) ;; equivalent to 'high | |
138 (setq url-privacy-level '(os)) | |
139 | |
140 ::NOTE:: | |
141 This variable controls several other variables and is _NOT_ automatically | |
142 updated. Call the function `url-setup-privacy-info' after modifying this | |
143 variable." | |
68121
0c55f53b51e6
(url-privacy-level): Add setter.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65559
diff
changeset
|
144 :initialize 'custom-initialize-default |
0c55f53b51e6
(url-privacy-level): Add setter.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65559
diff
changeset
|
145 :set (lambda (sym val) (set-default sym val) (url-setup-privacy-info)) |
54695 | 146 :type '(radio (const :tag "None (you believe in the basic goodness of humanity)" |
147 :value none) | |
148 (const :tag "Low (do not reveal last location)" | |
149 :value low) | |
150 (const :tag "High (no email address or last location)" | |
151 :value high) | |
152 (const :tag "Paranoid (reveal nothing!)" | |
153 :value paranoid) | |
154 (checklist :tag "Custom" | |
155 (const :tag "Email address" :value email) | |
156 (const :tag "Operating system" :value os) | |
157 (const :tag "Last location" :value lastloc) | |
158 (const :tag "Browser identification" :value agent) | |
159 (const :tag "No cookies" :value cookie))) | |
160 :group 'url) | |
161 | |
162 (defvar url-inhibit-uncompression nil "Do not do decompression if non-nil.") | |
163 | |
164 (defcustom url-uncompressor-alist '((".z" . "x-gzip") | |
165 (".gz" . "x-gzip") | |
166 (".uue" . "x-uuencoded") | |
167 (".hqx" . "x-hqx") | |
168 (".Z" . "x-compress") | |
169 (".bz2" . "x-bzip2")) | |
170 "*An alist of file extensions and appropriate content-transfer-encodings." | |
171 :type '(repeat (cons :format "%v" | |
172 (string :tag "Extension") | |
173 (string :tag "Encoding"))) | |
174 :group 'url-mime) | |
175 | |
65559
02ea691fea58
(url-mail-command): Don't test fboundp of `compose-mail'.
Richard M. Stallman <rms@gnu.org>
parents:
64748
diff
changeset
|
176 (defcustom url-mail-command 'compose-mail |
54695 | 177 "*This function will be called whenever url needs to send mail. |
178 It should enter a mail-mode-like buffer in the current window. | |
179 The commands `mail-to' and `mail-subject' should still work in this | |
180 buffer, and it should use `mail-header-separator' if possible." | |
181 :type 'function | |
182 :group 'url) | |
183 | |
184 (defcustom url-proxy-services nil | |
185 "*An alist of schemes and proxy servers that gateway them. | |
186 Looks like ((\"http\" . \"hostname:portnumber\") ...). This is set up | |
187 from the ACCESS_proxy environment variables." | |
188 :type '(repeat (cons :format "%v" | |
189 (string :tag "Protocol") | |
190 (string :tag "Proxy"))) | |
191 :group 'url) | |
192 | |
193 (defcustom url-standalone-mode nil | |
194 "*Rely solely on the cache?" | |
195 :type 'boolean | |
196 :group 'url-cache) | |
197 | |
198 (defvar url-mime-separator-chars (mapcar 'identity | |
199 (concat "ABCDEFGHIJKLMNOPQRSTUVWXYZ" | |
200 "abcdefghijklmnopqrstuvwxyz" | |
201 "0123456789'()+_,-./=?")) | |
202 "Characters allowable in a MIME multipart separator.") | |
203 | |
204 (defcustom url-bad-port-list | |
205 '("25" "119" "19") | |
206 "*List of ports to warn the user about connecting to. | |
207 Defaults to just the mail, chargen, and NNTP ports so you cannot be | |
208 tricked into sending fake mail or forging messages by a malicious HTML | |
209 document." | |
210 :type '(repeat (string :tag "Port")) | |
211 :group 'url-hairy) | |
212 | |
213 (defvar url-mime-content-type-charset-regexp | |
214 ";[ \t]*charset=\"?\\([^\"]+\\)\"?" | |
215 "Regexp used in parsing `Content-Type' for a charset indication.") | |
216 | |
217 (defvar url-request-data nil "Any data to send with the next request.") | |
218 | |
219 (defvar url-request-extra-headers nil | |
220 "A list of extra headers to send with the next request. | |
221 Should be an assoc list of headers/contents.") | |
222 | |
223 (defvar url-request-method nil "The method to use for the next request.") | |
224 | |
225 ;; FIXME!! (RFC 2616 gives examples like `compress, gzip'.) | |
226 (defvar url-mime-encoding-string nil | |
227 "*String to send in the Accept-encoding: field in HTTP requests.") | |
228 | |
229 ;; Perhaps the first few should actually be given decreasing `q's and | |
230 ;; the list should be trimmed significantly. | |
231 ;; Fixme: do something sane if we don't have `sort-coding-systems' | |
232 ;; (Emacs 20, XEmacs). | |
233 (defun url-mime-charset-string () | |
234 "Generate a list of preferred MIME charsets for HTTP requests. | |
235 Generated according to current coding system priorities." | |
236 (if (fboundp 'sort-coding-systems) | |
237 (let ((ordered (sort-coding-systems | |
238 (let (accum) | |
239 (dolist (elt mm-mime-mule-charset-alist) | |
240 (if (mm-coding-system-p (car elt)) | |
241 (push (car elt) accum))) | |
242 (nreverse accum))))) | |
243 (concat (format "%s;q=1, " (pop ordered)) | |
244 (mapconcat 'symbol-name ordered ";q=0.5, ") | |
245 ";q=0.5")))) | |
246 | |
247 (defvar url-mime-charset-string (url-mime-charset-string) | |
248 "*String to send in the Accept-charset: field in HTTP requests. | |
249 The MIME charset corresponding to the most preferred coding system is | |
250 given priority 1 and the rest are given priority 0.5.") | |
251 | |
252 (defun url-set-mime-charset-string () | |
253 (setq url-mime-charset-string (url-mime-charset-string))) | |
254 ;; Regenerate if the language environment changes. | |
255 (add-hook 'set-language-environment-hook 'url-set-mime-charset-string) | |
256 | |
257 ;; Fixme: set from the locale. | |
258 (defcustom url-mime-language-string nil | |
259 "*String to send in the Accept-language: field in HTTP requests. | |
260 | |
261 Specifies the preferred language when servers can serve documents in | |
262 several languages. Use RFC 1766 abbreviations, e.g.@: `en' for | |
263 English, `de' for German. A comma-separated specifies descending | |
264 order of preference. The ordering can be made explicit using `q' | |
265 factors defined by HTTP, e.g. `de,en-gb;q=0.8,en;q=0.7'. `*' means | |
266 get the first available language (as opposed to the default)." | |
267 :type '(radio | |
268 (const :tag "None (get default language version)" :value nil) | |
269 (const :tag "Any (get first available language version)" :value "*") | |
270 (string :tag "Other")) | |
271 :group 'url-mime | |
272 :group 'i18n) | |
273 | |
274 (defvar url-mime-accept-string nil | |
275 "String to send to the server in the Accept: field in HTTP requests.") | |
276 | |
277 (defvar url-package-version nil | |
278 "Version number of package using URL.") | |
279 | |
68121
0c55f53b51e6
(url-privacy-level): Add setter.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65559
diff
changeset
|
280 (defvar url-package-name nil "Name of package using URL.") |
54695 | 281 |
282 (defvar url-system-type nil | |
283 "What type of system we are on.") | |
284 (defvar url-os-type nil | |
285 "What OS we are on.") | |
286 | |
287 (defcustom url-max-password-attempts 5 | |
288 "*Maximum number of times a password will be prompted for. | |
289 Applies when a protected document is denied by the server." | |
290 :type 'integer | |
291 :group 'url) | |
292 | |
293 (defcustom url-temporary-directory (or (getenv "TMPDIR") "/tmp") | |
294 "*Where temporary files go." | |
295 :type 'directory | |
296 :group 'url-file) | |
297 | |
298 (defcustom url-show-status t | |
299 "*Whether to show a running total of bytes transferred. | |
300 Can cause a large hit if using a remote X display over a slow link, or | |
301 a terminal with a slow modem." | |
302 :type 'boolean | |
303 :group 'url) | |
304 | |
305 (defvar url-using-proxy nil | |
306 "Either nil or the fully qualified proxy URL in use, e.g. | |
307 http://www.domain.com/") | |
308 | |
309 (defcustom url-news-server nil | |
310 "*The default news server from which to get newsgroups/articles. | |
311 Applies if no server is specified in the URL. Defaults to the | |
312 environment variable NNTPSERVER or \"news\" if NNTPSERVER is | |
313 undefined." | |
314 :type '(choice (const :tag "None" :value nil) string) | |
315 :group 'url) | |
316 | |
317 (defvar url-nonrelative-link | |
318 "\\`\\([-a-zA-Z0-9+.]+:\\)" | |
319 "A regular expression that will match an absolute URL.") | |
320 | |
77178
54ea4fb072b4
(url-max-redirections): New var.
Chong Yidong <cyd@stupidchicken.com>
parents:
75347
diff
changeset
|
321 (defcustom url-max-redirections 30 |
54ea4fb072b4
(url-max-redirections): New var.
Chong Yidong <cyd@stupidchicken.com>
parents:
75347
diff
changeset
|
322 "*The maximum number of redirection requests to honor in a HTTP connection. |
54ea4fb072b4
(url-max-redirections): New var.
Chong Yidong <cyd@stupidchicken.com>
parents:
75347
diff
changeset
|
323 A negative number means to honor an unlimited number of redirection requests." |
54ea4fb072b4
(url-max-redirections): New var.
Chong Yidong <cyd@stupidchicken.com>
parents:
75347
diff
changeset
|
324 :type 'integer |
54ea4fb072b4
(url-max-redirections): New var.
Chong Yidong <cyd@stupidchicken.com>
parents:
75347
diff
changeset
|
325 :group 'url) |
54ea4fb072b4
(url-max-redirections): New var.
Chong Yidong <cyd@stupidchicken.com>
parents:
75347
diff
changeset
|
326 |
54695 | 327 (defcustom url-confirmation-func 'y-or-n-p |
328 "*What function to use for asking yes or no functions. | |
329 Possible values are `yes-or-no-p' or `y-or-n-p', or any function that | |
330 takes a single argument (the prompt), and returns t only if a positive | |
331 answer is given." | |
332 :type '(choice (const :tag "Short (y or n)" :value y-or-n-p) | |
333 (const :tag "Long (yes or no)" :value yes-or-no-p) | |
334 (function :tag "Other")) | |
335 :group 'url-hairy) | |
336 | |
337 (defcustom url-gateway-method 'native | |
338 "*The type of gateway support to use. | |
339 Should be a symbol specifying how to get a connection from the local machine. | |
340 | |
341 Currently supported methods: | |
342 `telnet': Run telnet in a subprocess to connect; | |
343 `rlogin': Rlogin to another machine to connect; | |
344 `socks': Connect through a socks server; | |
57449
202c408c174b
url-vars.el (url-gateway-method): Add new method `tls'.
Simon Josefsson <jas@extundo.com>
parents:
57427
diff
changeset
|
345 `tls': Connect with TLS; |
202c408c174b
url-vars.el (url-gateway-method): Add new method `tls'.
Simon Josefsson <jas@extundo.com>
parents:
57427
diff
changeset
|
346 `ssl': Connect with SSL (deprecated, use `tls' instead); |
54695 | 347 `native': Connect directy." |
348 :type '(radio (const :tag "Telnet to gateway host" :value telnet) | |
349 (const :tag "Rlogin to gateway host" :value rlogin) | |
350 (const :tag "Use SOCKS proxy" :value socks) | |
57449
202c408c174b
url-vars.el (url-gateway-method): Add new method `tls'.
Simon Josefsson <jas@extundo.com>
parents:
57427
diff
changeset
|
351 (const :tag "Use SSL/TLS for all connections" :value tls) |
202c408c174b
url-vars.el (url-gateway-method): Add new method `tls'.
Simon Josefsson <jas@extundo.com>
parents:
57427
diff
changeset
|
352 (const :tag "Use SSL for all connections (obsolete)" :value ssl) |
54695 | 353 (const :tag "Direct connection" :value native)) |
354 :group 'url-hairy) | |
355 | |
356 (defvar url-setup-done nil "Has setup configuration been done?") | |
357 | |
57514
c386726e02a5
(url-passwd-entry-func): Var deleted.
Richard M. Stallman <rms@gnu.org>
parents:
57449
diff
changeset
|
358 (defconst url-weekday-alist |
54695 | 359 '(("Sunday" . 0) ("Monday" . 1) ("Tuesday" . 2) ("Wednesday" . 3) |
360 ("Thursday" . 4) ("Friday" . 5) ("Saturday" . 6) | |
361 ("Tues" . 2) ("Thurs" . 4) | |
362 ("Sun" . 0) ("Mon" . 1) ("Tue" . 2) ("Wed" . 3) | |
363 ("Thu" . 4) ("Fri" . 5) ("Sat" . 6))) | |
364 | |
57514
c386726e02a5
(url-passwd-entry-func): Var deleted.
Richard M. Stallman <rms@gnu.org>
parents:
57449
diff
changeset
|
365 (defconst url-monthabbrev-alist |
54695 | 366 '(("Jan" . 1) ("Feb" . 2) ("Mar" . 3) ("Apr" . 4) ("May" . 5) ("Jun" . 6) |
367 ("Jul" . 7) ("Aug" . 8) ("Sep" . 9) ("Oct" . 10) ("Nov" . 11) | |
368 ("Dec" . 12))) | |
369 | |
370 (defvar url-lazy-message-time 0) | |
371 | |
372 ;; Fixme: We may not be able to run SSL. | |
373 (defvar url-extensions-header "Security/Digest Security/SSL") | |
374 | |
375 (defvar url-parse-syntax-table | |
376 (copy-syntax-table emacs-lisp-mode-syntax-table) | |
377 "*A syntax table for parsing URLs.") | |
378 | |
379 (modify-syntax-entry ?' "\"" url-parse-syntax-table) | |
380 (modify-syntax-entry ?` "\"" url-parse-syntax-table) | |
381 (modify-syntax-entry ?< "(>" url-parse-syntax-table) | |
382 (modify-syntax-entry ?> ")<" url-parse-syntax-table) | |
383 (modify-syntax-entry ?/ " " url-parse-syntax-table) | |
384 | |
385 (defvar url-load-hook nil | |
94429
c91f78a8a0af
(url-load-hook): Fix typo in docstring.
Juanma Barranquero <lekktu@gmail.com>
parents:
93975
diff
changeset
|
386 "*Hooks to be run after initializing the URL library.") |
54695 | 387 |
388 ;;; Make OS/2 happy - yeeks | |
389 ;; (defvar tcp-binary-process-input-services nil | |
390 ;; "*Make OS/2 happy with our CRLF pairs...") | |
391 | |
392 (defconst url-working-buffer " *url-work") | |
393 | |
394 (defvar url-gateway-unplugged nil | |
63619
14790c6d12cd
(url-gateway-unplugged): Fix spellings.
Juanma Barranquero <lekktu@gmail.com>
parents:
59996
diff
changeset
|
395 "Non-nil means don't open new network connections. |
54695 | 396 This should be set, e.g. by mail user agents rendering HTML to avoid |
397 `bugs' which call home.") | |
398 | |
399 (provide 'url-vars) | |
400 | |
93975
1e3a407766b9
Fix up comment convention on the arch-tag lines.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
87649
diff
changeset
|
401 ;; arch-tag: 29205e5f-c5ce-433c-8d5d-38cbaed64b49 |
54695 | 402 ;;; url-vars.el ends here |