"mml-smime.el" "mml.el" "mml1991.el" "mml2015.el")
"Files which should not be byte-compiled.")
-(eval-and-compile
- (when (featurep 'xemacs)
- (autoload 'Info-directory "info" nil t)
- (autoload 'Info-menu "info" nil t)
- (autoload 'annotations-at "annotations")
- (autoload 'apropos "apropos" nil t)
- (autoload 'apropos-command "apropos" nil t)
- (autoload 'bbdb-complete-name "bbdb-com" nil t)
- (autoload 'browse-url "browse-url" nil t)
- (autoload 'customize-apropos "cus-edit" nil t)
- (autoload 'customize-save-variable "cus-edit" nil t)
- (autoload 'customize-variable "cus-edit" nil t)
- (autoload 'delete-annotation "annotations")
- (autoload 'dolist "cl-macs" nil nil 'macro)
- (autoload 'enriched-decode "enriched")
- (autoload 'info "info" nil t)
- (autoload 'make-annotation "annotations")
- (autoload 'make-display-table "disp-table")
- (autoload 'pp "pp")
- (autoload 'ps-despool "ps-print" nil t)
- (autoload 'ps-spool-buffer "ps-print" nil t)
- (autoload 'ps-spool-buffer-with-faces "ps-print" nil t)
- (autoload 'read-passwd "passwd")
- (autoload 'regexp-opt "regexp-opt")
- (autoload 'reporter-submit-bug-report "reporter")
- (autoload 'setenv "process" nil t)
- (autoload 'smtpmail-send-it "smtpmail")
- (autoload 'sort-numeric-fields "sort" nil t)
- (autoload 'sort-subr "sort")
- (autoload 'trace-function-background "trace" nil t)
- (autoload 'w3-do-setup "w3")
- (autoload 'w3-prepare-buffer "w3-display")
- (autoload 'w3-region "w3-display" nil t)
- (defalias 'frame-char-height 'frame-height)
- (defalias 'frame-char-width 'frame-width)
- (defalias 'frame-parameter 'frame-property)
- (defalias 'make-overlay 'ignore)
- (defalias 'overlay-end 'ignore)
- (defalias 'overlay-get 'ignore)
- (defalias 'overlay-put 'ignore)
- (defalias 'overlay-start 'ignore)
- (defalias 'overlays-in 'ignore)
- (defalias 'replace-dehighlight 'ignore)
- (defalias 'replace-highlight 'ignore)
- (defalias 'run-with-idle-timer 'ignore)
- (defalias 'w3-coding-system-for-mime-charset 'ignore)))
-
(defun dgnushack-compile (&optional warn)
;;(setq byte-compile-dynamic t)
(unless warn
"Install MANIFEST file as an XEmacs package."
(let* ((package-dir (car command-line-args-left))
(product-name (cadr command-line-args-left))
- (name (expand-file-name (concat "pkginfo/MANIFEST." product-name)
- package-dir))
+ (pkginfo-dir (expand-file-name "pkginfo" package-dir))
+ (name (expand-file-name (concat "MANIFEST." product-name)
+ pkginfo-dir))
make-backup-files)
+ (unless (file-directory-p pkginfo-dir)
+ (message "Creating directory %s/..." pkginfo-dir)
+ (make-directory pkginfo-dir))
(message "Generating %s..." name)
(with-temp-file name
(insert "pkginfo/MANIFEST." product-name "\n")