gnus-html.el: Replace process-kill-without-query by gnus-set-process-query-on-exit...
[gnus] / lisp / dgnushack.el
1 ;;; dgnushack.el --- a hack to set the load path for byte-compiling
2 ;; Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2003,
3 ;; 2004, 2005, 2006, 2007, 2008, 2009, 2010
4 ;;        Free Software Foundation, Inc.
5
6 ;; Author: Lars Magne Ingebrigtsen <larsi@gnus.org>
7 ;; Version: 4.19
8 ;; Keywords: news, path
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 3, 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
23 ;; along with GNU Emacs; see the file COPYING.  If not, write to the
24 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
25 ;; Boston, MA 02110-1301, USA.
26
27 ;;; Commentary:
28
29 ;;; Code:
30
31 (defvar dgnushack-default-load-path (copy-sequence load-path))
32
33 (defalias 'facep 'ignore)
34
35 (require 'cl)
36
37 (defvar srcdir (or (getenv "srcdir") "."))
38 (defvar loaddir (and load-file-name (file-name-directory load-file-name)))
39
40 (defun my-getenv (str)
41   (let ((val (getenv str)))
42     (if (equal val "no") nil val)))
43
44 (if (my-getenv "lispdir")
45     (push (my-getenv "lispdir") load-path))
46
47 (push (or (my-getenv "URLDIR") (expand-file-name "../../url/lisp/" loaddir))
48       load-path)
49
50 (push (or (my-getenv "W3DIR") (expand-file-name "../../w3/lisp/" loaddir))
51       load-path)
52
53 ;(push "/usr/share/emacs/site-lisp" load-path)
54
55 ;; If we are building w3 in a different directory than the source
56 ;; directory, we must read *.el from source directory and write *.elc
57 ;; into the building directory.  For that, we define this function
58 ;; before loading bytecomp.  Bytecomp doesn't overwrite this function.
59 (defun byte-compile-dest-file (filename)
60   "Convert an Emacs Lisp source file name to a compiled file name.
61  In addition, remove directory name part from FILENAME."
62   (setq filename (byte-compiler-base-file-name filename))
63   (setq filename (file-name-sans-versions filename))
64   (setq filename (file-name-nondirectory filename))
65   (if (eq system-type 'windows-nt)
66       (setq filename (downcase filename)))
67   (cond ((eq system-type 'vax-vms)
68          (concat (substring filename 0 (string-match ";" filename)) "c"))
69         ((string-match emacs-lisp-file-regexp filename)
70          (concat (substring filename 0 (match-beginning 0)) ".elc"))
71         (t (concat filename ".elc"))))
72
73 (require 'bytecomp)
74 ;; To avoid having defsubsts and inlines happen.
75 ;(if (featurep 'xemacs)
76 ;    (require 'byte-optimize)
77 ;  (require 'byte-opt))
78 ;(defun byte-optimize-inline-handler (form)
79 ;  "byte-optimize-handler for the `inline' special-form."
80 ;  (cons 'progn (cdr form)))
81 ;(defalias 'byte-compile-file-form-defsubst 'byte-compile-file-form-defun)
82
83 (when (and (not (featurep 'xemacs))
84            (= emacs-major-version 21)
85            (>= emacs-minor-version 3)
86            (condition-case code
87                (let ((byte-compile-error-on-warn t))
88                  (byte-optimize-form (quote (pop x)) t)
89                  nil)
90              (error (string-match "called for effect"
91                                   (error-message-string code)))))
92   (defadvice byte-optimize-form-code-walker (around silence-warn-for-pop
93                                                     (form for-effect)
94                                                     activate)
95     "Silence the warning \"...called for effect\" for the `pop' form.
96 It is effective only when the `pop' macro is defined by cl.el rather
97 than subr.el."
98     (let (tmp)
99       (if (and (eq (car-safe form) 'car)
100                for-effect
101                (setq tmp (get 'car 'side-effect-free))
102                (not byte-compile-delete-errors)
103                (not (eq tmp 'error-free))
104                (eq (car-safe (cadr form)) 'prog1)
105                (let ((var (cadr (cadr form)))
106                      (last (nth 2 (cadr form))))
107                  (and (symbolp var)
108                       (null (nthcdr 3 (cadr form)))
109                       (eq (car-safe last) 'setq)
110                       (eq (cadr last) var)
111                       (eq (car-safe (nth 2 last)) 'cdr)
112                       (eq (cadr (nth 2 last)) var))))
113           (progn
114             (put 'car 'side-effect-free 'error-free)
115             (unwind-protect
116                 ad-do-it
117               (put 'car 'side-effect-free tmp)))
118         ad-do-it))))
119
120 (when (and (not (featurep 'xemacs))
121            (byte-optimize-form
122             '(and (> 0 1)
123                   (message "This should not appear in the byte-code."))
124             t))
125   (defadvice byte-optimize-form-code-walker
126     (around fix-bug-in-and/or-forms (form for-effect) activate)
127     "Optimize the rest of the and/or forms.
128 It has been fixed in XEmacs before releasing 21.4 and also has been
129 fixed in Emacs 22."
130     (if (and for-effect (memq (car-safe form) '(and or)))
131         (let ((fn (car form))
132               (backwards (reverse (cdr form))))
133           (while (and backwards
134                       (null (setcar backwards
135                                     (byte-optimize-form (car backwards) t))))
136             (setq backwards (cdr backwards)))
137           (if (and (cdr form) (null backwards))
138               (byte-compile-log
139                "  all subforms of %s called for effect; deleted" form))
140           (when backwards
141             (setcdr backwards
142                     (mapcar 'byte-optimize-form (cdr backwards))))
143           (setq ad-return-value (cons fn (nreverse backwards))))
144       ad-do-it)))
145
146 ;; Work around for an incompatibility (XEmacs 21.4 vs. 21.5), see the
147 ;; following threads:
148 ;;
149 ;; http://thread.gmane.org/gmane.emacs.gnus.general/56414
150 ;; Subject: attachment problems found but not fixed
151 ;;
152 ;; http://thread.gmane.org/gmane.emacs.gnus.general/56459
153 ;; Subject: Splitting mail -- XEmacs 21.4 vs 21.5
154 ;;
155 ;; http://thread.gmane.org/gmane.emacs.xemacs.beta/20519
156 ;; Subject: XEmacs 21.5 and Gnus fancy splitting.
157 ;;
158 ;; Should be fixed in XEmacs (March 2007).
159 ;; http://thread.gmane.org/gmane.emacs.xemacs.patches/8124
160 ;; When should we remove this workaround?
161 ;;
162 (when (and (featurep 'xemacs)
163            (let ((table (copy-syntax-table emacs-lisp-mode-syntax-table)))
164              (modify-syntax-entry ?= " " table)
165              (with-temp-buffer
166                (with-syntax-table table
167                  (insert "foo=bar")
168                  (goto-char (point-min))
169                  (forward-sexp 1)
170                  (eolp)))))
171   ;; The original `with-syntax-table' uses `copy-syntax-table' which
172   ;; doesn't seem to copy modified syntax entries in XEmacs 21.5.
173   (defmacro with-syntax-table (syntab &rest body)
174     "Evaluate BODY with the SYNTAB as the current syntax table."
175     `(let ((stab (syntax-table)))
176        (unwind-protect
177            (progn
178              ;;(set-syntax-table (copy-syntax-table ,syntab))
179              (set-syntax-table ,syntab)
180              ,@body)
181          (set-syntax-table stab)))))
182
183 (push srcdir load-path)
184 (push loaddir load-path)
185 (load (expand-file-name "lpath.el" loaddir) nil t)
186
187 (defalias 'device-sound-enabled-p 'ignore)
188 (defalias 'play-sound-file 'ignore)
189 (defalias 'efs-re-read-dir 'ignore)
190 (defalias 'ange-ftp-re-read-dir 'ignore)
191 (defalias 'define-mail-user-agent 'ignore)
192
193 (eval-and-compile
194   (unless (featurep 'xemacs)
195     (defalias 'get-popup-menu-response 'ignore)
196     (defalias 'event-object 'ignore)
197     (defalias 'x-defined-colors 'ignore)
198     (defalias 'read-color 'ignore)))
199
200 (eval-and-compile
201   (when (featurep 'xemacs)
202     (unless (fboundp 'defadvice)
203       (autoload 'defadvice "advice" nil nil 'macro))
204     (autoload 'Info-directory "info" nil t)
205     (autoload 'Info-index "info" nil t)
206     (autoload 'Info-index-next "info" nil t)
207     (autoload 'Info-menu "info" nil t)
208     (autoload 'ad-add-advice "advice")
209     (unless (and (emacs-version>= 21 5)
210                  (not (featurep 'sxemacs)))
211       ;; calendar/auto-autoloads.el provides it.
212       (autoload 'add-to-invisibility-spec "dummy"))
213     (autoload 'annotations-at "annotations")
214     (autoload 'apropos "apropos" nil t)
215     (autoload 'apropos-command "apropos" nil t)
216     (autoload 'bbdb-complete-name "bbdb-com" nil t)
217     (autoload 'browse-url "browse-url" nil t)
218     (autoload 'browse-url-of-file "browse-url" nil t)
219     (autoload 'c-mode "cc-mode" nil t)
220     (autoload 'customize-apropos "cus-edit" nil t)
221     (autoload 'customize-group "cus-edit" nil t)
222     (autoload 'customize-save-variable "cus-edit" nil t)
223     (autoload 'customize-set-variable "cus-edit" nil t)
224     (autoload 'customize-variable "cus-edit" nil t)
225     (autoload 'debug "debug" nil t)
226     (if (featurep 'mule)
227         (unless (locate-library "mule-ccl")
228           (autoload 'define-ccl-program "ccl" nil nil 'macro))
229       (defalias 'define-ccl-program 'ignore))
230     (autoload 'delete-annotation "annotations")
231     (autoload 'dolist "cl-macs" nil nil 'macro)
232     (autoload 'enriched-decode "enriched")
233     (autoload 'eudc-expand-inline "eudc" nil t)
234     (autoload 'executable-find "executable")
235     (autoload 'font-lock-fontify-buffer "font-lock" nil t)
236     (when (and (emacs-version>= 21 5)
237                (not (featurep 'sxemacs)))
238       (autoload 'get-display-table "disp-table")
239       (autoload 'put-display-table "disp-table"))
240     (autoload 'info "info" nil t)
241     (autoload 'mail-extract-address-components "mail-extr")
242     (autoload 'mail-fetch-field "mail-utils")
243     (autoload 'make-annotation "annotations")
244     (autoload 'make-display-table "disp-table")
245     (autoload 'pgg-snarf-keys-region "pgg" nil t)
246     (autoload 'pp "pp")
247     (autoload 'ps-despool "ps-print" nil t)
248     (autoload 'ps-spool-buffer "ps-print" nil t)
249     (autoload 'ps-spool-buffer-with-faces "ps-print" nil t)
250     (autoload 'read-passwd "passwd")
251     (autoload 'regexp-opt "regexp-opt")
252     (autoload 'reporter-submit-bug-report "reporter")
253     (if (and (emacs-version>= 21 5)
254              (not (featurep 'sxemacs)))
255         (autoload 'setenv "process" nil t)
256       (autoload 'setenv "env" nil t))
257     (autoload 'sgml-mode "psgml" nil t)
258     (autoload 'smtpmail-send-it "smtpmail")
259     (autoload 'sort-numeric-fields "sort" nil t)
260     (autoload 'sort-subr "sort")
261     (autoload 'thing-at-point "thingatpt")
262     (autoload 'toggle-truncate-lines "view-less" nil t)
263     (autoload 'trace-function-background "trace" nil t)
264     (autoload 'unmorse-region "morse" nil t)
265     (autoload 'w3-do-setup "w3")
266     (autoload 'w3-prepare-buffer "w3-display")
267     (autoload 'w3-region "w3-display" nil t)
268     (defalias 'frame-char-height 'frame-height)
269     (defalias 'frame-char-width 'frame-width)
270     (defalias 'frame-parameter 'frame-property)
271     (defalias 'make-overlay 'ignore)
272     (defalias 'overlay-end 'ignore)
273     (defalias 'overlay-get 'ignore)
274     (defalias 'overlay-put 'ignore)
275     (defalias 'overlay-start 'ignore)
276     (defalias 'overlays-in 'ignore)
277     (defalias 'replace-dehighlight 'ignore)
278     (defalias 'replace-highlight 'ignore)
279     (defalias 'w3-coding-system-for-mime-charset 'ignore)))
280
281 (defun dgnushack-emacs-compile-defcustom-p ()
282   "Return non-nil if Emacs byte compiles `defcustom' forms.
283 Those Emacsen will warn against undefined variables and functions used
284 in `defcustom' forms."
285   (let ((outbuf (with-temp-buffer
286                   (insert "(defcustom foo (1+ (random)) \"\" :group 'emacs)\n")
287                   (byte-compile-from-buffer (current-buffer) "foo.el"))))
288     (when outbuf
289       (prog1
290           (with-current-buffer outbuf
291             (goto-char (point-min))
292             (search-forward " 'foo '(byte-code " nil t))
293         (kill-buffer outbuf)))))
294
295 (when (dgnushack-emacs-compile-defcustom-p)
296   (maybe-fbind '(defined-colors face-attribute))
297   (maybe-bind '(idna-program installation-directory)))
298
299 (defun dgnushack-compile-verbosely ()
300   "Call dgnushack-compile with warnings ENABLED.  If you are compiling
301 patches to gnus, you should consider modifying make.bat to call
302 dgnushack-compile-verbosely.  All other users should continue to use
303 dgnushack-compile."
304   (dgnushack-compile t))
305
306 (defun dgnushack-compile (&optional warn)
307   ;;(setq byte-compile-dynamic t)
308   (unless warn
309     (setq byte-compile-warnings
310           '(free-vars unresolved callargs redefine)))
311   (let ((files (directory-files srcdir nil "^[^=].*\\.el$"))
312         ;;(byte-compile-generate-call-tree t)
313         file elc)
314     ;; Avoid barfing (from gnus-xmas) because the etc directory is not yet
315     ;; installed.
316     (when (featurep 'xemacs)
317       (setq gnus-xmas-glyph-directory "dummy"))
318     (dolist (file '(".dir-locals.el" "dgnushack.el" "lpath.el"))
319       (setq files (delete file files)))
320     (when (featurep 'base64)
321       (setq files (delete "base64.el" files)))
322     (condition-case code
323         (require 'w3-parse)
324       (error
325        (message "No w3: %s %s" (cadr code) (or (locate-library "w3-parse") ""))
326        (dolist (file '("webmail.el" "nnwfm.el"))
327          (setq files (delete file files)))))
328     (condition-case code
329         ;; Under XEmacs 21.4 this loads easy-mmode.elc that provides
330         ;; the Emacs functions `propertize' and `replace-regexp-in-string'.
331         (require 'mh-e)
332       (error
333        (message "No mh-e: %s %s" (cadr code) (or (locate-library "mh-e") ""))
334        (setq files (delete "gnus-mh.el" files))))
335     (condition-case code
336         (require 'xml)
337       (error
338        (message "No xml: %s %s" (cadr code) (or (locate-library "xml") ""))
339        (setq files (delete "nnrss.el" files))))
340     (dolist (file
341              (if (featurep 'xemacs)
342                  '("md5.el")
343                '("gnus-xmas.el" "messagexmas.el" "nnheaderxm.el")))
344       (setq files (delete file files)))
345
346     (dolist (file files)
347       (setq file (expand-file-name file srcdir))
348       (when (and (file-exists-p
349                   (setq elc (concat (file-name-nondirectory file) "c")))
350                  (file-newer-than-file-p file elc))
351         (delete-file elc)))
352
353     (while (setq file (pop files))
354       (setq file (expand-file-name file srcdir))
355       (when (or (not (file-exists-p
356                       (setq elc (concat (file-name-nondirectory file) "c"))))
357                 (file-newer-than-file-p file elc))
358         (ignore-errors
359           (byte-compile-file file))))))
360
361 (defun dgnushack-recompile ()
362   (require 'gnus)
363   (byte-recompile-directory "." 0))
364
365 (defvar dgnushack-gnus-load-file
366   (if (featurep 'xemacs)
367       (expand-file-name "auto-autoloads.el")
368     (expand-file-name "gnus-load.el")))
369
370 (defvar dgnushack-cus-load-file
371   (if (featurep 'xemacs)
372       (expand-file-name "custom-load.el")
373     (expand-file-name "cus-load.el")))
374
375 (defun dgnushack-make-cus-load ()
376   (load "cus-dep")
377   (let ((cusload-base-file dgnushack-cus-load-file))
378     (defadvice directory-files (after exclude-dir-locals activate)
379       "Exclude .dir-locals.el file."
380       (dolist (file ad-return-value)
381         (if (string-match "\\(?:\\`\\|/\\)\\.dir-locals\\.el\\'" file)
382             (setq ad-return-value (delete file ad-return-value)))))
383     (unwind-protect
384         (if (fboundp 'custom-make-dependencies)
385             (custom-make-dependencies)
386           (Custom-make-dependencies))
387       (ad-unadvise 'directory-files))
388     (when (featurep 'xemacs)
389       (message "Compiling %s..." dgnushack-cus-load-file)
390       (byte-compile-file dgnushack-cus-load-file))))
391
392 (defun dgnushack-make-auto-load ()
393   (require 'autoload)
394   (unless (make-autoload '(define-derived-mode child parent name
395                             "docstring" body)
396                          "file")
397     (defadvice make-autoload (around handle-define-derived-mode activate)
398       "Handle `define-derived-mode'."
399       (if (eq (car-safe (ad-get-arg 0)) 'define-derived-mode)
400           (setq ad-return-value
401                 (list 'autoload
402                       (list 'quote (nth 1 (ad-get-arg 0)))
403                       (ad-get-arg 1)
404                       (nth 4 (ad-get-arg 0))
405                       t nil))
406         ad-do-it))
407     (put 'define-derived-mode 'doc-string-elt 3))
408   (let ((generated-autoload-file dgnushack-gnus-load-file)
409         (make-backup-files nil)
410         (autoload-package-name "gnus"))
411     (if (featurep 'xemacs)
412         (if (file-exists-p generated-autoload-file)
413             (delete-file generated-autoload-file))
414       (with-temp-file generated-autoload-file
415         (insert ?\014)))
416     (defadvice directory-files (after exclude-dir-locals activate)
417       "Exclude .dir-locals.el file."
418       (dolist (file ad-return-value)
419         (if (string-match "\\(?:\\`\\|/\\)\\.dir-locals\\.el\\'" file)
420             (setq ad-return-value (delete file ad-return-value)))))
421     (unwind-protect
422         (batch-update-autoloads)
423       (ad-unadvise 'directory-files))))
424
425 (defun dgnushack-make-load ()
426   (unless (featurep 'xemacs)
427     (message "Generating %s..." dgnushack-gnus-load-file)
428     (with-temp-file dgnushack-gnus-load-file
429       (insert-file-contents dgnushack-cus-load-file)
430       (delete-file dgnushack-cus-load-file)
431       (goto-char (point-min))
432       (search-forward ";;; Code:")
433       (forward-line)
434       (delete-region (point-min) (point))
435       (insert "\
436 ;;; gnus-load.el --- automatically extracted custom dependencies and autoload
437 ;;
438 ;;; Code:
439 ")
440       (goto-char (point-max))
441       (if (search-backward "custom-versions-load-alist" nil t)
442           (forward-line -1)
443         (forward-line -1)
444         (while (eq (char-after) ?\;)
445           (forward-line -1))
446         (forward-line))
447       (delete-region (point) (point-max))
448       (insert "\n")
449       ;; smiley-* are duplicated. Remove them all.
450       (let ((point (point)))
451         (insert-file-contents dgnushack-gnus-load-file)
452         (goto-char point)
453         (while (search-forward "smiley-" nil t)
454           (beginning-of-line)
455           (if (looking-at "(autoload ")
456               (delete-region (point) (progn (forward-sexp) (point)))
457             (forward-line))))
458       ;;
459       (goto-char (point-max))
460       (when (search-backward "\n(provide " nil t)
461         (forward-line -1)
462         (delete-region (point) (point-max)))
463       (insert "\
464
465 \(provide 'gnus-load)
466
467 ;;; Local Variables:
468 ;;; version-control: never
469 ;;; no-byte-compile: t
470 ;;; no-update-autoloads: t
471 ;;; End:
472 ;;; gnus-load.el ends here
473 ")
474       ))
475   (message "Compiling %s..." dgnushack-gnus-load-file)
476   (byte-compile-file dgnushack-gnus-load-file)
477   (when (featurep 'xemacs)
478     (message "Creating dummy gnus-load.el...")
479     (with-temp-file (expand-file-name "gnus-load.el")
480       (insert "\
481
482 \(provide 'gnus-load)
483
484 ;;; Local Variables:
485 ;;; version-control: never
486 ;;; no-byte-compile: t
487 ;;; no-update-autoloads: t
488 ;;; End:
489 ;;; gnus-load.el ends here"))))
490
491 (defun dgnushack-find-lisp-shadows (&optional lispdir)
492   "Return a list of directories in which other Gnus installations exist.
493 This function looks for the other Gnus installations which will shadow
494 the new Gnus Lisp modules which have been installed in LISPDIR, using
495 the default `load-path'.  The return value will make sense only when
496 LISPDIR is existent and is listed in the default `load-path'.  Assume
497 LISPDIR will be prepended to `load-path' by a user if the default
498 `load-path' does not contain it."
499   (unless lispdir
500     (setq lispdir (getenv "lispdir")))
501   (when (and lispdir (file-directory-p lispdir))
502     (setq lispdir (file-truename (directory-file-name lispdir)))
503     (let ((indices '("gnus.elc" "gnus.el" "gnus.el.bz2" "gnus.el.gz"
504                      "message.elc" "message.el" "message.el.bz2"
505                      "message.el.gz"))
506           (path (delq nil (mapcar
507                            (lambda (p)
508                              (condition-case nil
509                                  (when (and p (file-directory-p p))
510                                    (file-truename (directory-file-name p)))
511                                (error nil)))
512                            dgnushack-default-load-path)))
513           rest elcs)
514       (while path
515         (setq rest (cons (car path) rest)
516               path (delete (car rest) (cdr path))))
517       (setq path (nreverse (cdr (member lispdir rest)))
518             rest nil)
519       (while path
520         (setq elcs indices)
521         (while elcs
522           (when (file-exists-p (expand-file-name (pop elcs) (car path)))
523             (setq rest (cons (car path) rest)
524                   elcs nil)))
525         (setq path (cdr path)))
526       (prog1
527           (setq path (nreverse rest))
528         (when path
529           (let (print-level print-length)
530             (princ (concat "\n\
531 WARNING: The other Gnus installation" (if (cdr path) "s have" " has") "\
532  been detected in:\n\n  " (mapconcat 'identity path "\n  ") "\n\n\
533 You will need to modify the run-time `load-path', remove them manually,
534 or remove them using `make remove-installed-shadows'.\n\n"))))))))
535
536 (defun dgnushack-remove-lisp-shadows (&optional lispdir)
537   "Remove the other Gnus installations which shadow the recent one."
538   (let ((path (with-temp-buffer
539                 (let ((standard-output (current-buffer)))
540                   (dgnushack-find-lisp-shadows lispdir))))
541         elcs files shadows file)
542     (when path
543       (unless (setq elcs (directory-files srcdir nil "\\.elc\\'"))
544         (error "You should build .elc files first."))
545       (setq files
546             (apply
547              'append
548              (mapcar
549               (lambda (el)
550                 (list (concat el "c") el (concat el ".bz2") (concat el ".gz")))
551               (append
552                (list (file-name-nondirectory dgnushack-gnus-load-file)
553                      (file-name-nondirectory dgnushack-cus-load-file))
554                (mapcar (lambda (elc) (substring elc 0 -1)) elcs)))))
555       (while path
556         (setq shadows files)
557         (while shadows
558           (setq file (expand-file-name (pop shadows) (car path)))
559           (when (file-exists-p file)
560             (princ (concat "  Removing " file "..."))
561             (condition-case nil
562                 (progn
563                   (delete-file file)
564                   (princ "done\n"))
565               (error (princ "failed\n")))))
566         (setq path (cdr path))))))
567
568 ;;; dgnushack.el ends here