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