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