aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
authorReuben Thomas2014-08-07 12:49:36 +0100
committerReuben Thomas2014-08-07 12:49:36 +0100
commit6d9d9cde2f7672efc5d74dc1f8f4a8bd9deb27ea (patch)
tree5617810b2e5630ce6a5bef0b8dffa300e3ff19b9 /lisp
parent6c5bbf8a00919b191d5319ee9324c93f1c496dbf (diff)
downloademacs-6d9d9cde2f7672efc5d74dc1f8f4a8bd9deb27ea.tar.gz
emacs-6d9d9cde2f7672efc5d74dc1f8f4a8bd9deb27ea.zip
Remove remaining mentions of VMS as a host
* notes/exit-value: Remove specific discussion of VMS. * doc/emacs/programs.texi (Program Modes): Don't advertise VMS DCL support any more. * doc/misc/ediff.texi (Merging and diff3): Don't mention lack of support for VMS diff, we no longer support VMS. * lisp/progmodes/ada-mode.el: * lisp/net/tramp.el (tramp-handle-file-symlink-p): * lisp/net/tramp-ftp.el (tramp-ftp-file-name-handler): Remove a comment about VMS, which we no longer support. * lisp/progmodes/ada-xref.el (ada-xref-current): Remove mention of VMS, and fix a FIXME, using convert-standard-filename in place of removed ada-convert-file-name. * lisp/url/url-handlers.el: Remove a comment about VMS, which we no longer support.
Diffstat (limited to 'lisp')
-rw-r--r--lisp/ChangeLog15
-rw-r--r--lisp/files.el2
-rw-r--r--lisp/net/tramp-ftp.el7
-rw-r--r--lisp/net/tramp.el2
-rw-r--r--lisp/progmodes/ada-mode.el5
-rw-r--r--lisp/progmodes/ada-xref.el8
-rw-r--r--lisp/url/ChangeLog5
-rw-r--r--lisp/url/url-handlers.el2
8 files changed, 24 insertions, 22 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 9948ec0d3c0..12f5f5fb84c 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,5 +1,20 @@
12014-08-07 Reuben Thomas <rrt@sc3d.org> 12014-08-07 Reuben Thomas <rrt@sc3d.org>
2 2
3 * progmodes/ada-mode.el:
4 * net/tramp.el (tramp-handle-file-symlink-p):
5 * net/tramp-ftp.el (tramp-ftp-file-name-handler): Remove a comment
6 about VMS, which we no longer support.
7 * progmodes/ada-xref.el (ada-xref-current): Remove mention of VMS,
8 and fix a FIXME, using convert-standard-filename in place of
9 removed ada-convert-file-name.
10
112014-08-07 Eli Zaretskii <eliz@gnu.org>
12
13 * files.el (auto-mode-alist): Remove support for VMS from a
14 pattern.
15
162014-08-07 Reuben Thomas <rrt@sc3d.org>
17
3 Refer to MS-DOS using the same name everywhere. 18 Refer to MS-DOS using the same name everywhere.
4 19
5 * arc-mode.el: Fix a couple of ``MS-DOG''s missed in the previous 20 * arc-mode.el: Fix a couple of ``MS-DOG''s missed in the previous
diff --git a/lisp/files.el b/lisp/files.el
index 597afb99120..5cff5b11ee9 100644
--- a/lisp/files.el
+++ b/lisp/files.el
@@ -2413,7 +2413,7 @@ ARC\\|ZIP\\|LZH\\|LHA\\|ZOO\\|[JEW]AR\\|XPI\\|RAR\\|7Z\\)\\'" . archive-mode)
2413 ("\\.wy\\'" . wisent-grammar-mode) 2413 ("\\.wy\\'" . wisent-grammar-mode)
2414 ;; .emacs or .gnus or .viper following a directory delimiter in 2414 ;; .emacs or .gnus or .viper following a directory delimiter in
2415 ;; Unix or MS-DOS syntax. 2415 ;; Unix or MS-DOS syntax.
2416 ("[]>:/\\]\\..*\\(emacs\\|gnus\\|viper\\)\\'" . emacs-lisp-mode) 2416 ("[:/\\]\\..*\\(emacs\\|gnus\\|viper\\)\\'" . emacs-lisp-mode)
2417 ("\\`\\..*emacs\\'" . emacs-lisp-mode) 2417 ("\\`\\..*emacs\\'" . emacs-lisp-mode)
2418 ;; _emacs following a directory delimiter in MS-DOS syntax 2418 ;; _emacs following a directory delimiter in MS-DOS syntax
2419 ("[:/]_emacs\\'" . emacs-lisp-mode) 2419 ("[:/]_emacs\\'" . emacs-lisp-mode)
diff --git a/lisp/net/tramp-ftp.el b/lisp/net/tramp-ftp.el
index d98f6d74a6a..a723e57f296 100644
--- a/lisp/net/tramp-ftp.el
+++ b/lisp/net/tramp-ftp.el
@@ -178,12 +178,7 @@ pass to the OPERATION."
178 (ignore-errors (delete-file tmpfile))))) 178 (ignore-errors (delete-file tmpfile)))))
179 179
180 ;; Normally, the handlers must be discarded. 180 ;; Normally, the handlers must be discarded.
181 ;; `inhibit-file-name-handlers' isn't sufficient, because the 181 (t (let* ((inhibit-file-name-handlers
182 ;; local file name could be in Tramp syntax as well (for
183 ;; example, returning VMS file names like "/DISK$CAM:/AAA").
184 ;; That's why we set also `tramp-mode' to nil.
185 (t (let* (;(tramp-mode nil)
186 (inhibit-file-name-handlers
187 (list 'tramp-file-name-handler 182 (list 'tramp-file-name-handler
188 'tramp-completion-file-name-handler 183 'tramp-completion-file-name-handler
189 (and (eq inhibit-file-name-operation operation) 184 (and (eq inhibit-file-name-operation operation)
diff --git a/lisp/net/tramp.el b/lisp/net/tramp.el
index 921c70135df..17259c69159 100644
--- a/lisp/net/tramp.el
+++ b/lisp/net/tramp.el
@@ -2998,8 +2998,6 @@ User is always nil."
2998 (with-parsed-tramp-file-name filename nil 2998 (with-parsed-tramp-file-name filename nil
2999 (let ((x (car (file-attributes filename)))) 2999 (let ((x (car (file-attributes filename))))
3000 (when (stringp x) 3000 (when (stringp x)
3001 ;; When Tramp is running on VMS, then `file-name-absolute-p'
3002 ;; might do weird things.
3003 (if (file-name-absolute-p x) 3001 (if (file-name-absolute-p x)
3004 (tramp-make-tramp-file-name method user host x) 3002 (tramp-make-tramp-file-name method user host x)
3005 x))))) 3003 x)))))
diff --git a/lisp/progmodes/ada-mode.el b/lisp/progmodes/ada-mode.el
index 68b6c872d3f..0d07d573155 100644
--- a/lisp/progmodes/ada-mode.el
+++ b/lisp/progmodes/ada-mode.el
@@ -31,11 +31,6 @@
31;; independent from the GNU Ada compiler GNAT, distributed by Ada 31;; independent from the GNU Ada compiler GNAT, distributed by Ada
32;; Core Technologies. All the other files rely heavily on features 32;; Core Technologies. All the other files rely heavily on features
33;; provided only by GNAT. 33;; provided only by GNAT.
34;;
35;; Note: this mode will not work with Emacs 19. If you are on a VMS
36;; system, where the latest version of Emacs is 19.28, you will need
37;; another file, called ada-vms.el, that provides some required
38;; functions.
39 34
40;;; Usage: 35;;; Usage:
41;; Emacs should enter Ada mode automatically when you load an Ada file. 36;; Emacs should enter Ada mode automatically when you load an Ada file.
diff --git a/lisp/progmodes/ada-xref.el b/lisp/progmodes/ada-xref.el
index 7cad848fda8..4bc37451e6e 100644
--- a/lisp/progmodes/ada-xref.el
+++ b/lisp/progmodes/ada-xref.el
@@ -651,12 +651,6 @@ Call `ada-require-project-file' first to ensure a project exists."
651 (find-file (car (cdr pos))) 651 (find-file (car (cdr pos)))
652 (goto-char (car pos))))) 652 (goto-char (car pos)))))
653 653
654(defun ada-convert-file-name (name)
655 "Convert from NAME to a name that can be used by the compilation commands.
656This is overridden on VMS to convert from VMS filenames to Unix filenames."
657 name)
658;; FIXME: use convert-standard-filename instead
659
660(defun ada-set-default-project-file (file) 654(defun ada-set-default-project-file (file)
661 "Set FILE as the current project file." 655 "Set FILE as the current project file."
662 (interactive "fProject file:") 656 (interactive "fProject file:")
@@ -1465,7 +1459,7 @@ by replacing the file extension with `.ali'."
1465 (get-file-buffer ali-file-name)) 1459 (get-file-buffer ali-file-name))
1466 (kill-buffer (get-file-buffer ali-file-name))) 1460 (kill-buffer (get-file-buffer ali-file-name)))
1467 1461
1468 (let* ((name (ada-convert-file-name file)) 1462 (let* ((name (convert-standard-filename file))
1469 (body-name (or (ada-get-body-name name) name))) 1463 (body-name (or (ada-get-body-name name) name)))
1470 1464
1471 ;; Always recompile the body when we can. We thus temporarily switch to a 1465 ;; Always recompile the body when we can. We thus temporarily switch to a
diff --git a/lisp/url/ChangeLog b/lisp/url/ChangeLog
index 92945b37951..9554c6e519c 100644
--- a/lisp/url/ChangeLog
+++ b/lisp/url/ChangeLog
@@ -1,3 +1,8 @@
12014-08-07 Reuben Thomas <rrt@sc3d.org>
2
3 * url-handlers.el: Remove a comment about VMS, which we no longer
4 support.
5
12014-08-03 Paul Eggert <eggert@cs.ucla.edu> 62014-08-03 Paul Eggert <eggert@cs.ucla.edu>
2 7
3 Don't mishandle dates in the year 9999 (Bug#18176). 8 Don't mishandle dates in the year 9999 (Bug#18176).
diff --git a/lisp/url/url-handlers.el b/lisp/url/url-handlers.el
index 704c743bfcd..6b7ab8c9ce6 100644
--- a/lisp/url/url-handlers.el
+++ b/lisp/url/url-handlers.el
@@ -51,7 +51,7 @@
51;; delete-directory Finished (DAV) 51;; delete-directory Finished (DAV)
52;; delete-file Finished (DAV) 52;; delete-file Finished (DAV)
53;; diff-latest-backup-file 53;; diff-latest-backup-file
54;; directory-file-name unnecessary (what about VMS)? 54;; directory-file-name unnecessary
55;; directory-files Finished (DAV) 55;; directory-files Finished (DAV)
56;; dired-call-process 56;; dired-call-process
57;; dired-compress-file 57;; dired-compress-file