diff options
| author | Dan Nicolaescu | 2007-11-27 06:57:07 +0000 |
|---|---|---|
| committer | Dan Nicolaescu | 2007-11-27 06:57:07 +0000 |
| commit | 73e72da43b94e48189a4ff9fe711d36c6593d8e1 (patch) | |
| tree | acb258e369e6e24d1b6fc1f4afd986c1051d55d2 | |
| parent | d3b913571ad6e9dec29a3cf1e5733c8c572f3e47 (diff) | |
| download | emacs-73e72da43b94e48189a4ff9fe711d36c6593d8e1.tar.gz emacs-73e72da43b94e48189a4ff9fe711d36c6593d8e1.zip | |
* progmodes/cperl-mode.el (compilation-error-regexp-alist): Pacify
byte compiler.
(cperl-mode): Use with-no-warnings for setting vc-header-alist.
* progmodes/idlwave.el (idlwave-shell-get-path-info)
(idlwave-shell-temp-file, idlwave-shell-is-running)
(widget-value, comint-dynamic-complete-filename, Info-goto-node):
* progmodes/idlw-help.el (idlwave-prepare-structure-tag-completion)
(idlwave-all-method-classes, idlwave-all-method-keyword-classes)
(idlwave-beginning-of-statement, idlwave-best-rinfo-assoc)
(idlwave-class-found-in, idlwave-class-or-superclass-with-tag)
(idlwave-completing-read, idlwave-current-routine)
(idlwave-downcase-safe, idlwave-entry-find-keyword)
(idlwave-expand-keyword, idlwave-find-class-definition)
(idlwave-find-inherited-class, idlwave-find-struct-tag)
(idlwave-get-buffer-visiting, idlwave-in-quote)
(idlwave-make-full-name, idlwave-members-only)
(idlwave-popup-select, idlwave-routine-source-file)
(idlwave-routines, idlwave-sintern-class)
(idlwave-sintern-keyword, idlwave-sintern-method)
(idlwave-sintern-routine-or-method)
(idlwave-substitute-link-target, idlwave-sys-dir)
(idlwave-this-word, idlwave-what-module-find-class)
(idlwave-where):
* progmodes/idlw-complete-structtag.el (idlwave-shell-buffer):
* mail/uce.el (rmail-msg-is-pruned)
(rmail-maybe-set-message-counters, rmail-msgbeg, rmail-msgend)
(rmail-toggle-header):
* mail/sendmail.el (dired-view-file, dired-get-filename):
* mail/rmailkwd.el (rmail-maybe-set-message-counters)
(rmail-display-labels, rmail-msgbeg)
(rmail-set-message-deleted-p, rmail-message-labels-p)
(rmail-show-message, mail-comma-list-regexp)
(mail-parse-comma-list):
* mail/rmail.el (rmail-spam-filter, rmail-summary-goto-msg)
(rmail-summary-mark-undeleted, rmail-summary-mark-deleted)
(rfc822-addresses, mail-abbrev-make-syntax-table)
(mail-sendmail-delimit-header, mail-header-end):
* mail/hashcash.el (message-narrow-to-headers-or-head)
(message-fetch-field, message-goto-eoh)
(message-narrow-to-headers):
* vc.el (view-mode-exit): Declare as functions.
* mail/vms-pmail.el:
* vmsproc.el:
* vms-patch.el: Don't byte compile these files, they don't work.
* Makefile.in (SOME_MACHINE_LISP): Remove VMS files, they are not
compiled anymore.
| -rw-r--r-- | lisp/ChangeLog | 49 | ||||
| -rw-r--r-- | lisp/mail/hashcash.el | 5 | ||||
| -rw-r--r-- | lisp/mail/rmail.el | 9 | ||||
| -rw-r--r-- | lisp/mail/rmailkwd.el | 9 | ||||
| -rw-r--r-- | lisp/mail/rmailsum.el | 7 | ||||
| -rw-r--r-- | lisp/mail/sendmail.el | 3 | ||||
| -rw-r--r-- | lisp/mail/uce.el | 6 | ||||
| -rw-r--r-- | lisp/mail/vms-pmail.el | 1 | ||||
| -rw-r--r-- | lisp/progmodes/cperl-mode.el | 10 | ||||
| -rw-r--r-- | lisp/progmodes/idlw-complete-structtag.el | 2 | ||||
| -rw-r--r-- | lisp/progmodes/idlw-help.el | 31 | ||||
| -rw-r--r-- | lisp/progmodes/idlwave.el | 7 | ||||
| -rw-r--r-- | lisp/vc.el | 2 | ||||
| -rw-r--r-- | lisp/vms-patch.el | 1 | ||||
| -rw-r--r-- | lisp/vmsproc.el | 1 | ||||
| -rw-r--r-- | src/ChangeLog | 5 | ||||
| -rw-r--r-- | src/Makefile.in | 2 |
17 files changed, 146 insertions, 4 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 46d7a065313..d139dc3d3ca 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,52 @@ | |||
| 1 | 2007-11-27 Dan Nicolaescu <dann@ics.uci.edu> | ||
| 2 | |||
| 3 | * progmodes/cperl-mode.el (compilation-error-regexp-alist): Pacify | ||
| 4 | byte compiler. | ||
| 5 | (cperl-mode): Use with-no-warnings for setting vc-header-alist. | ||
| 6 | |||
| 7 | * progmodes/idlwave.el (idlwave-shell-get-path-info) | ||
| 8 | (idlwave-shell-temp-file, idlwave-shell-is-running) | ||
| 9 | (widget-value, comint-dynamic-complete-filename, Info-goto-node): | ||
| 10 | * progmodes/idlw-help.el (idlwave-prepare-structure-tag-completion) | ||
| 11 | (idlwave-all-method-classes, idlwave-all-method-keyword-classes) | ||
| 12 | (idlwave-beginning-of-statement, idlwave-best-rinfo-assoc) | ||
| 13 | (idlwave-class-found-in, idlwave-class-or-superclass-with-tag) | ||
| 14 | (idlwave-completing-read, idlwave-current-routine) | ||
| 15 | (idlwave-downcase-safe, idlwave-entry-find-keyword) | ||
| 16 | (idlwave-expand-keyword, idlwave-find-class-definition) | ||
| 17 | (idlwave-find-inherited-class, idlwave-find-struct-tag) | ||
| 18 | (idlwave-get-buffer-visiting, idlwave-in-quote) | ||
| 19 | (idlwave-make-full-name, idlwave-members-only) | ||
| 20 | (idlwave-popup-select, idlwave-routine-source-file) | ||
| 21 | (idlwave-routines, idlwave-sintern-class) | ||
| 22 | (idlwave-sintern-keyword, idlwave-sintern-method) | ||
| 23 | (idlwave-sintern-routine-or-method) | ||
| 24 | (idlwave-substitute-link-target, idlwave-sys-dir) | ||
| 25 | (idlwave-this-word, idlwave-what-module-find-class) | ||
| 26 | (idlwave-where): | ||
| 27 | * progmodes/idlw-complete-structtag.el (idlwave-shell-buffer): | ||
| 28 | * mail/uce.el (rmail-msg-is-pruned) | ||
| 29 | (rmail-maybe-set-message-counters, rmail-msgbeg, rmail-msgend) | ||
| 30 | (rmail-toggle-header): | ||
| 31 | * mail/sendmail.el (dired-view-file, dired-get-filename): | ||
| 32 | * mail/rmailkwd.el (rmail-maybe-set-message-counters) | ||
| 33 | (rmail-display-labels, rmail-msgbeg) | ||
| 34 | (rmail-set-message-deleted-p, rmail-message-labels-p) | ||
| 35 | (rmail-show-message, mail-comma-list-regexp) | ||
| 36 | (mail-parse-comma-list): | ||
| 37 | * mail/rmail.el (rmail-spam-filter, rmail-summary-goto-msg) | ||
| 38 | (rmail-summary-mark-undeleted, rmail-summary-mark-deleted) | ||
| 39 | (rfc822-addresses, mail-abbrev-make-syntax-table) | ||
| 40 | (mail-sendmail-delimit-header, mail-header-end): | ||
| 41 | * mail/hashcash.el (message-narrow-to-headers-or-head) | ||
| 42 | (message-fetch-field, message-goto-eoh) | ||
| 43 | (message-narrow-to-headers): | ||
| 44 | * vc.el (view-mode-exit): Declare as functions. | ||
| 45 | |||
| 46 | * mail/vms-pmail.el: | ||
| 47 | * vmsproc.el: | ||
| 48 | * vms-patch.el: Don't byte compile these files, they don't work. | ||
| 49 | |||
| 1 | 2007-11-27 Glenn Morris <rgm@gnu.org> | 50 | 2007-11-27 Glenn Morris <rgm@gnu.org> |
| 2 | 51 | ||
| 3 | * eshell/eshell.el (eshell-report-bug): Add version number of | 52 | * eshell/eshell.el (eshell-report-bug): Add version number of |
diff --git a/lisp/mail/hashcash.el b/lisp/mail/hashcash.el index 737178b8218..22005ce957e 100644 --- a/lisp/mail/hashcash.el +++ b/lisp/mail/hashcash.el | |||
| @@ -126,6 +126,11 @@ For example, you may want to set this to '(\"-Z2\") to reduce header length." | |||
| 126 | (concat (match-string 1 addr) (match-string 2 addr)) | 126 | (concat (match-string 1 addr) (match-string 2 addr)) |
| 127 | addr)) | 127 | addr)) |
| 128 | 128 | ||
| 129 | (declare-function message-narrow-to-headers-or-head "message" ()) | ||
| 130 | (declare-function message-fetch-field "message" (header &optional not-all)) | ||
| 131 | (declare-function message-goto-eoh "message" ()) | ||
| 132 | (declare-function message-narrow-to-headers "message" ()) | ||
| 133 | |||
| 129 | (defun hashcash-token-substring () | 134 | (defun hashcash-token-substring () |
| 130 | (save-excursion | 135 | (save-excursion |
| 131 | (let ((token "")) | 136 | (let ((token "")) |
diff --git a/lisp/mail/rmail.el b/lisp/mail/rmail.el index f011621930a..7beb8c0516c 100644 --- a/lisp/mail/rmail.el +++ b/lisp/mail/rmail.el | |||
| @@ -1519,6 +1519,15 @@ original copy." | |||
| 1519 | 1519 | ||
| 1520 | ;;;; *** Rmail input *** | 1520 | ;;;; *** Rmail input *** |
| 1521 | 1521 | ||
| 1522 | (declare-function rmail-spam-filter "rmail-spam-filter" (msg)) | ||
| 1523 | (declare-function rmail-summary-goto-msg "rmailsum" (&optional n nowarn skip-rmail)) | ||
| 1524 | (declare-function rmail-summary-mark-undeleted "rmailsum" (n)) | ||
| 1525 | (declare-function rmail-summary-mark-deleted "rmailsum" (&optional n undel)) | ||
| 1526 | (declare-function rfc822-addresses "rfc822" (header-text)) | ||
| 1527 | (declare-function mail-abbrev-make-syntax-table "mailabbrev.el" ()) | ||
| 1528 | (declare-function mail-sendmail-delimit-header "sendmail" ()) | ||
| 1529 | (declare-function mail-header-end "sendmail" ()) | ||
| 1530 | |||
| 1522 | ;; RLK feature not added in this version: | 1531 | ;; RLK feature not added in this version: |
| 1523 | ;; argument specifies inbox file or files in various ways. | 1532 | ;; argument specifies inbox file or files in various ways. |
| 1524 | 1533 | ||
diff --git a/lisp/mail/rmailkwd.el b/lisp/mail/rmailkwd.el index c479e35beb7..48e2246520b 100644 --- a/lisp/mail/rmailkwd.el +++ b/lisp/mail/rmailkwd.el | |||
| @@ -86,6 +86,15 @@ Completion is performed over known labels when reading." | |||
| 86 | rmail-last-label | 86 | rmail-last-label |
| 87 | (setq rmail-last-label (rmail-make-label result t)))))) | 87 | (setq rmail-last-label (rmail-make-label result t)))))) |
| 88 | 88 | ||
| 89 | (declare-function rmail-maybe-set-message-counters "rmail" ()) | ||
| 90 | (declare-function rmail-display-labels "rmail" ()) | ||
| 91 | (declare-function rmail-msgbeg "rmail" (n)) | ||
| 92 | (declare-function rmail-set-message-deleted-p "rmail" (n state)) | ||
| 93 | (declare-function rmail-message-labels-p "rmail" (msg labels)) | ||
| 94 | (declare-function rmail-show-message "rmail" (&optional n no-summary)) | ||
| 95 | (declare-function mail-comma-list-regexp "mail-utils" (labels)) | ||
| 96 | (declare-function mail-parse-comma-list "mail-utils.el" ()) | ||
| 97 | |||
| 89 | (defun rmail-set-label (l state &optional n) | 98 | (defun rmail-set-label (l state &optional n) |
| 90 | (with-current-buffer rmail-buffer | 99 | (with-current-buffer rmail-buffer |
| 91 | (rmail-maybe-set-message-counters) | 100 | (rmail-maybe-set-message-counters) |
diff --git a/lisp/mail/rmailsum.el b/lisp/mail/rmailsum.el index fd5931fdef9..cde289ed719 100644 --- a/lisp/mail/rmailsum.el +++ b/lisp/mail/rmailsum.el | |||
| @@ -1323,6 +1323,13 @@ argument says to read a file name and use that file as the inbox." | |||
| 1323 | (end-of-buffer)) | 1323 | (end-of-buffer)) |
| 1324 | (forward-line -1)) | 1324 | (forward-line -1)) |
| 1325 | 1325 | ||
| 1326 | (declare-function rmail-abort-edit "rmailedit" ()) | ||
| 1327 | (declare-function rmail-cease-edit "rmailedit"()) | ||
| 1328 | (declare-function rmail-set-label "rmailkwd" (l state &optional n)) | ||
| 1329 | (declare-function rmail-output-read-file-name "rmailout" ()) | ||
| 1330 | (declare-function rmail-output-read-rmail-file-name "rmailout" ()) | ||
| 1331 | (declare-function mail-send-and-exit "sendmail" (&optional arg)) | ||
| 1332 | |||
| 1326 | (defvar rmail-summary-edit-map nil) | 1333 | (defvar rmail-summary-edit-map nil) |
| 1327 | (if rmail-summary-edit-map | 1334 | (if rmail-summary-edit-map |
| 1328 | nil | 1335 | nil |
diff --git a/lisp/mail/sendmail.el b/lisp/mail/sendmail.el index f348624d120..da1c5c48989 100644 --- a/lisp/mail/sendmail.el +++ b/lisp/mail/sendmail.el | |||
| @@ -1744,6 +1744,9 @@ The seventh argument ACTIONS is a list of actions to take | |||
| 1744 | (message "Auto save file for draft message exists; consider M-x mail-recover")) | 1744 | (message "Auto save file for draft message exists; consider M-x mail-recover")) |
| 1745 | initialized)) | 1745 | initialized)) |
| 1746 | 1746 | ||
| 1747 | (declare-function dired-view-file "dired" ()) | ||
| 1748 | (declare-function dired-get-filename "dired" (&optional localp no-error-if-not-filep)) | ||
| 1749 | |||
| 1747 | (defun mail-recover-1 () | 1750 | (defun mail-recover-1 () |
| 1748 | "Pop up a list of auto-saved draft messages so you can recover one of them." | 1751 | "Pop up a list of auto-saved draft messages so you can recover one of them." |
| 1749 | (interactive) | 1752 | (interactive) |
diff --git a/lisp/mail/uce.el b/lisp/mail/uce.el index 035ab0d774c..5a4e01ae9fc 100644 --- a/lisp/mail/uce.el +++ b/lisp/mail/uce.el | |||
| @@ -218,6 +218,12 @@ These are mostly meant for headers that prevent delivery errors reporting." | |||
| 218 | :group 'uce) | 218 | :group 'uce) |
| 219 | 219 | ||
| 220 | (declare-function mail-strip-quoted-names "mail-utils" (address)) | 220 | (declare-function mail-strip-quoted-names "mail-utils" (address)) |
| 221 | (declare-function rmail-msg-is-pruned "rmail" ()) | ||
| 222 | (declare-function rmail-maybe-set-message-counters "rmail" ()) | ||
| 223 | (declare-function rmail-msgbeg "rmail" (n)) | ||
| 224 | (declare-function rmail-msgend "rmail" (n)) | ||
| 225 | (declare-function rmail-toggle-header "rmail" (&optional arg)) | ||
| 226 | |||
| 221 | 227 | ||
| 222 | (defun uce-reply-to-uce (&optional ignored) | 228 | (defun uce-reply-to-uce (&optional ignored) |
| 223 | "Send reply to UCE in Rmail. | 229 | "Send reply to UCE in Rmail. |
diff --git a/lisp/mail/vms-pmail.el b/lisp/mail/vms-pmail.el index 022a8070a2e..9785fed71e6 100644 --- a/lisp/mail/vms-pmail.el +++ b/lisp/mail/vms-pmail.el | |||
| @@ -1,3 +1,4 @@ | |||
| 1 | ;; -*- no-byte-compile: t -*- | ||
| 1 | ;;; vms-pmail.el --- use Emacs as the editor within VMS mail | 2 | ;;; vms-pmail.el --- use Emacs as the editor within VMS mail |
| 2 | 3 | ||
| 3 | ;; Copyright (C) 1992, 2001, 2002, 2003, 2004, 2005, | 4 | ;; Copyright (C) 1992, 2001, 2002, 2003, 2004, 2005, |
diff --git a/lisp/progmodes/cperl-mode.el b/lisp/progmodes/cperl-mode.el index 13f1e0c24b8..4a397a9d012 100644 --- a/lisp/progmodes/cperl-mode.el +++ b/lisp/progmodes/cperl-mode.el | |||
| @@ -1510,6 +1510,8 @@ the last)." | |||
| 1510 | 2 3)) | 1510 | 2 3)) |
| 1511 | "Alist that specifies how to match errors in perl output.") | 1511 | "Alist that specifies how to match errors in perl output.") |
| 1512 | 1512 | ||
| 1513 | (defvar compilation-error-regexp-alist) | ||
| 1514 | |||
| 1513 | ;;;###autoload | 1515 | ;;;###autoload |
| 1514 | (defun cperl-mode () | 1516 | (defun cperl-mode () |
| 1515 | "Major mode for editing Perl code. | 1517 | "Major mode for editing Perl code. |
| @@ -1790,9 +1792,11 @@ or as help on variables `cperl-tips', `cperl-problems', | |||
| 1790 | (set 'vc-sccs-header cperl-vc-sccs-header) | 1792 | (set 'vc-sccs-header cperl-vc-sccs-header) |
| 1791 | ;; This one is obsolete... | 1793 | ;; This one is obsolete... |
| 1792 | (make-local-variable 'vc-header-alist) | 1794 | (make-local-variable 'vc-header-alist) |
| 1793 | (set 'vc-header-alist (or cperl-vc-header-alist ; Avoid warning | 1795 | (with-no-warnings |
| 1794 | `((SCCS ,(car cperl-vc-sccs-header)) | 1796 | (set 'vc-header-alist (or cperl-vc-header-alist ; Avoid warning |
| 1795 | (RCS ,(car cperl-vc-rcs-header))))) | 1797 | `((SCCS ,(car cperl-vc-sccs-header)) |
| 1798 | (RCS ,(car cperl-vc-rcs-header))))) | ||
| 1799 | ) | ||
| 1796 | (cond ((boundp 'compilation-error-regexp-alist-alist);; xemacs 20.x | 1800 | (cond ((boundp 'compilation-error-regexp-alist-alist);; xemacs 20.x |
| 1797 | (make-local-variable 'compilation-error-regexp-alist-alist) | 1801 | (make-local-variable 'compilation-error-regexp-alist-alist) |
| 1798 | (set 'compilation-error-regexp-alist-alist | 1802 | (set 'compilation-error-regexp-alist-alist |
diff --git a/lisp/progmodes/idlw-complete-structtag.el b/lisp/progmodes/idlw-complete-structtag.el index d005c6de63e..e88041423f1 100644 --- a/lisp/progmodes/idlw-complete-structtag.el +++ b/lisp/progmodes/idlw-complete-structtag.el | |||
| @@ -91,6 +91,8 @@ | |||
| 91 | 91 | ||
| 92 | (require 'idlwave) | 92 | (require 'idlwave) |
| 93 | 93 | ||
| 94 | (declare-function idlwave-shell-buffer "idlw-shell") | ||
| 95 | |||
| 94 | ;; Some variables to identify the previously used structure | 96 | ;; Some variables to identify the previously used structure |
| 95 | (defvar idlwave-current-tags-var nil) | 97 | (defvar idlwave-current-tags-var nil) |
| 96 | (defvar idlwave-current-tags-buffer nil) | 98 | (defvar idlwave-current-tags-buffer nil) |
diff --git a/lisp/progmodes/idlw-help.el b/lisp/progmodes/idlw-help.el index b599baa2893..cd83a7ba55c 100644 --- a/lisp/progmodes/idlw-help.el +++ b/lisp/progmodes/idlw-help.el | |||
| @@ -255,6 +255,37 @@ support." | |||
| 255 | (defvar idlwave-help-def-pos) | 255 | (defvar idlwave-help-def-pos) |
| 256 | (defvar idlwave-help-args) | 256 | (defvar idlwave-help-args) |
| 257 | (defvar idlwave-help-in-header) | 257 | (defvar idlwave-help-in-header) |
| 258 | (declare-function idlwave-prepare-structure-tag-completion "idlw-complete-structtag") | ||
| 259 | (declare-function idlwave-all-method-classes "idlwave") | ||
| 260 | (declare-function idlwave-all-method-keyword-classes "idlwave") | ||
| 261 | (declare-function idlwave-beginning-of-statement "idlwave") | ||
| 262 | (declare-function idlwave-best-rinfo-assoc "idlwave") | ||
| 263 | (declare-function idlwave-class-found-in "idlwave") | ||
| 264 | (declare-function idlwave-class-or-superclass-with-tag "idlwave") | ||
| 265 | (declare-function idlwave-completing-read "idlwave") | ||
| 266 | (declare-function idlwave-current-routine "idlwave") | ||
| 267 | (declare-function idlwave-downcase-safe "idlwave") | ||
| 268 | (declare-function idlwave-entry-find-keyword "idlwave") | ||
| 269 | (declare-function idlwave-expand-keyword "idlwave") | ||
| 270 | (declare-function idlwave-find-class-definition "idlwave") | ||
| 271 | (declare-function idlwave-find-inherited-class "idlwave") | ||
| 272 | (declare-function idlwave-find-struct-tag "idlwave") | ||
| 273 | (declare-function idlwave-get-buffer-visiting "idlwave") | ||
| 274 | (declare-function idlwave-in-quote "idlwave") | ||
| 275 | (declare-function idlwave-make-full-name "idlwave") | ||
| 276 | (declare-function idlwave-members-only "idlwave") | ||
| 277 | (declare-function idlwave-popup-select "idlwave") | ||
| 278 | (declare-function idlwave-routine-source-file "idlwave") | ||
| 279 | (declare-function idlwave-routines "idlwave") | ||
| 280 | (declare-function idlwave-sintern-class "idlwave") | ||
| 281 | (declare-function idlwave-sintern-keyword "idlwave") | ||
| 282 | (declare-function idlwave-sintern-method "idlwave") | ||
| 283 | (declare-function idlwave-sintern-routine-or-method "idlwave") | ||
| 284 | (declare-function idlwave-substitute-link-target "idlwave") | ||
| 285 | (declare-function idlwave-sys-dir "idlwave") | ||
| 286 | (declare-function idlwave-this-word "idlwave") | ||
| 287 | (declare-function idlwave-what-module-find-class "idlwave") | ||
| 288 | (declare-function idlwave-where "idlwave") | ||
| 258 | 289 | ||
| 259 | (defun idlwave-help-mode () | 290 | (defun idlwave-help-mode () |
| 260 | "Major mode for displaying IDL Help. | 291 | "Major mode for displaying IDL Help. |
diff --git a/lisp/progmodes/idlwave.el b/lisp/progmodes/idlwave.el index abe5cfe6489..4e71b2e13b7 100644 --- a/lisp/progmodes/idlwave.el +++ b/lisp/progmodes/idlwave.el | |||
| @@ -182,6 +182,13 @@ | |||
| 182 | (defmacro defcustom (var value doc &rest args) | 182 | (defmacro defcustom (var value doc &rest args) |
| 183 | `(defvar ,var ,value ,doc)))) | 183 | `(defvar ,var ,value ,doc)))) |
| 184 | 184 | ||
| 185 | (declare-function idlwave-shell-get-path-info "idlw-shell") | ||
| 186 | (declare-function idlwave-shell-temp-file "idlw-shell") | ||
| 187 | (declare-function idlwave-shell-is-running "idlw-shell") | ||
| 188 | (declare-function widget-value "wid-edit" (widget)) | ||
| 189 | (declare-function comint-dynamic-complete-filename "comint" ()) | ||
| 190 | (declare-function Info-goto-node "info" (nodename &optional fork)) | ||
| 191 | |||
| 185 | (defgroup idlwave nil | 192 | (defgroup idlwave nil |
| 186 | "Major mode for editing IDL .pro files." | 193 | "Major mode for editing IDL .pro files." |
| 187 | :tag "IDLWAVE" | 194 | :tag "IDLWAVE" |
diff --git a/lisp/vc.el b/lisp/vc.el index 0942392a49d..74e949a4a3c 100644 --- a/lisp/vc.el +++ b/lisp/vc.el | |||
| @@ -1598,6 +1598,8 @@ first backend that could register the file is used." | |||
| 1598 | (let ((vc-handled-backends (list backend))) | 1598 | (let ((vc-handled-backends (list backend))) |
| 1599 | (call-interactively 'vc-register))) | 1599 | (call-interactively 'vc-register))) |
| 1600 | 1600 | ||
| 1601 | (declare-function view-mode-exit "view" (&optional return-to-alist exit-action all-win)) | ||
| 1602 | |||
| 1601 | (defun vc-resynch-window (file &optional keep noquery) | 1603 | (defun vc-resynch-window (file &optional keep noquery) |
| 1602 | "If FILE is in the current buffer, either revert or unvisit it. | 1604 | "If FILE is in the current buffer, either revert or unvisit it. |
| 1603 | The choice between revert (to see expanded keywords) and unvisit depends on | 1605 | The choice between revert (to see expanded keywords) and unvisit depends on |
diff --git a/lisp/vms-patch.el b/lisp/vms-patch.el index 39cec28d88d..82d248f2373 100644 --- a/lisp/vms-patch.el +++ b/lisp/vms-patch.el | |||
| @@ -1,3 +1,4 @@ | |||
| 1 | ;; -*- no-byte-compile: t -*- | ||
| 1 | ;;; vms-patch.el --- override parts of files.el for VMS | 2 | ;;; vms-patch.el --- override parts of files.el for VMS |
| 2 | 3 | ||
| 3 | ;; Copyright (C) 1986, 1992, 2001, 2002, 2003, 2004, | 4 | ;; Copyright (C) 1986, 1992, 2001, 2002, 2003, 2004, |
diff --git a/lisp/vmsproc.el b/lisp/vmsproc.el index 92df327dde1..136d2913975 100644 --- a/lisp/vmsproc.el +++ b/lisp/vmsproc.el | |||
| @@ -1,3 +1,4 @@ | |||
| 1 | ;; -*- no-byte-compile: t -*- | ||
| 1 | ;;; vmsproc.el --- run asynchronous VMS subprocesses under Emacs | 2 | ;;; vmsproc.el --- run asynchronous VMS subprocesses under Emacs |
| 2 | 3 | ||
| 3 | ;; Copyright (C) 1986, 2001, 2002, 2003, 2004, 2005, | 4 | ;; Copyright (C) 1986, 2001, 2002, 2003, 2004, 2005, |
diff --git a/src/ChangeLog b/src/ChangeLog index 21e69f91c8e..ff1d631cfd2 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2007-11-27 Dan Nicolaescu <dann@ics.uci.edu> | ||
| 2 | |||
| 3 | * Makefile.in (SOME_MACHINE_LISP): Remove VMS files, they are not | ||
| 4 | compiled anymore. | ||
| 5 | |||
| 1 | 2007-11-26 Andreas Schwab <schwab@suse.de> | 6 | 2007-11-26 Andreas Schwab <schwab@suse.de> |
| 2 | 7 | ||
| 3 | * process.c (list_processes_1): Fix indentation level of the | 8 | * process.c (list_processes_1): Fix indentation level of the |
diff --git a/src/Makefile.in b/src/Makefile.in index cb183e6bbf2..b171fbf8e82 100644 --- a/src/Makefile.in +++ b/src/Makefile.in | |||
| @@ -920,7 +920,7 @@ shortlisp= \ | |||
| 920 | for the sake of systems which can''t handle large ones. */ | 920 | for the sake of systems which can''t handle large ones. */ |
| 921 | SOME_MACHINE_LISP = ${dotdot}/lisp/mouse.elc \ | 921 | SOME_MACHINE_LISP = ${dotdot}/lisp/mouse.elc \ |
| 922 | ${dotdot}/lisp/select.elc ${dotdot}/lisp/scroll-bar.elc \ | 922 | ${dotdot}/lisp/select.elc ${dotdot}/lisp/scroll-bar.elc \ |
| 923 | ${dotdot}/lisp/vmsproc.elc ${dotdot}/lisp/vms-patch.elc \ | 923 | VMS_SUPPORT \ |
| 924 | ${dotdot}/lisp/ls-lisp.elc ${dotdot}/lisp/dos-fns.elc \ | 924 | ${dotdot}/lisp/ls-lisp.elc ${dotdot}/lisp/dos-fns.elc \ |
| 925 | ${dotdot}/lisp/w32-fns.elc ${dotdot}/lisp/dos-w32.elc \ | 925 | ${dotdot}/lisp/w32-fns.elc ${dotdot}/lisp/dos-w32.elc \ |
| 926 | ${dotdot}/lisp/disp-table.elc ${dotdot}/lisp/dos-vars.elc \ | 926 | ${dotdot}/lisp/disp-table.elc ${dotdot}/lisp/dos-vars.elc \ |