aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/ChangeLog18
-rw-r--r--lisp/net/tramp.el1
2 files changed, 12 insertions, 7 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 16a3d5e99d4..19cb7aef4a0 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,7 +1,11 @@
12002-09-23 Juanma Barranquero <lektu@terra.es>
2
3 * net/tramp.el (tramp-unified-filenames): Autoload it.
4
12002-09-23 Michael Kifer <kifer@cs.stonybrook.edu> 52002-09-23 Michael Kifer <kifer@cs.stonybrook.edu>
2 6
3 * ediff-init.el (ediff-get-next-window): bug fix. 7 * ediff-init.el (ediff-get-next-window): bug fix.
4 8
52002-09-22 Richard M. Stallman <rms@gnu.org> 92002-09-22 Richard M. Stallman <rms@gnu.org>
6 10
7 * international/mule-cmds.el (select-safe-coding-system): Cope if 11 * international/mule-cmds.el (select-safe-coding-system): Cope if
@@ -234,7 +238,7 @@
234 (tramp-parse-passwd): Added exception handling for "root", because 238 (tramp-parse-passwd): Added exception handling for "root", because
235 `tramp-get-completion-su' (the previous place for this stuff) 239 `tramp-get-completion-su' (the previous place for this stuff)
236 doesn't exist any longer. 240 doesn't exist any longer.
237 241
2382002-09-07 Kai Gro,b_(Bjohann <Kai.Grossjohann@CS.Uni-Dortmund.DE> 2422002-09-07 Kai Gro,b_(Bjohann <Kai.Grossjohann@CS.Uni-Dortmund.DE>
239 243
240 * net/tramp.el (tramp-enter-password): Use 244 * net/tramp.el (tramp-enter-password): Use
@@ -357,7 +361,7 @@
357 (tramp-get-completion-user-host): New function. 361 (tramp-get-completion-user-host): New function.
358 (tramp-get-completion-rsh) 362 (tramp-get-completion-rsh)
359 (tramp-get-completion-ssh): Apply it. 363 (tramp-get-completion-ssh): Apply it.
360 364
3612002-08-29 Michael Albinus <Michael.Albinus@alcatel.de> 3652002-08-29 Michael Albinus <Michael.Albinus@alcatel.de>
362 366
363 * net/tramp.el (tramp-completion-file-name-handler-alist): Add 367 * net/tramp.el (tramp-completion-file-name-handler-alist): Add
@@ -448,7 +452,7 @@
448 to `inhibit-file-name-handlers'. 452 to `inhibit-file-name-handlers'.
449 (tramp-completion-handle-file-name-all-completions) 453 (tramp-completion-handle-file-name-all-completions)
450 (tramp-completion-handle-file-name-completion): New functions. 454 (tramp-completion-handle-file-name-completion): New functions.
451 455
4522002-08-12 Michael Albinus <Michael.Albinus@alcatel.de> 4562002-08-12 Michael Albinus <Michael.Albinus@alcatel.de>
453 457
454 * net/tramp.el (tramp-invoke-ange-ftp): `tramp-disable-ange-ftp' 458 * net/tramp.el (tramp-invoke-ange-ftp): `tramp-disable-ange-ftp'
@@ -575,7 +579,7 @@
5752002-09-18 Luc Teirlinck <teirllm@mail.auburn.edu> 5792002-09-18 Luc Teirlinck <teirllm@mail.auburn.edu>
576 580
577 * ielm.el: (*1, *2, *3): New variables. 581 * ielm.el: (*1, *2, *3): New variables.
578 (ielm-eval-input): Make temporary buffers current on entry and 582 (ielm-eval-input): Make temporary buffers current on entry and
579 exit to the let bindings for *, ** and ***. 583 exit to the let bindings for *, ** and ***.
580 (inferior-emacs-lisp-mode): Mention *1, *2 and *3 in the docstring. 584 (inferior-emacs-lisp-mode): Mention *1, *2 and *3 in the docstring.
581 Do not overrule global bindings for *, ** and ***. 585 Do not overrule global bindings for *, ** and ***.
@@ -744,7 +748,7 @@
744 update indentation, insert headerline and "wildcard" info. 748 update indentation, insert headerline and "wildcard" info.
745 Pass --dired arg if appropriate; put info in dired-filename props. 749 Pass --dired arg if appropriate; put info in dired-filename props.
746 Don't expand file names here. 750 Don't expand file names here.
747 751
748 * warnings.el (display-warning): In batch mode, 752 * warnings.el (display-warning): In batch mode,
749 exclude the final newline from the arg to `message'. 753 exclude the final newline from the arg to `message'.
750 754
diff --git a/lisp/net/tramp.el b/lisp/net/tramp.el
index 36f81005ec5..33fdc09ee80 100644
--- a/lisp/net/tramp.el
+++ b/lisp/net/tramp.el
@@ -117,6 +117,7 @@
117;; syntax on XEmacs is that EFS hooks into XEmacs in many places, but 117;; syntax on XEmacs is that EFS hooks into XEmacs in many places, but
118;; Tramp only knows how to deal with `file-name-handler-alist', not 118;; Tramp only knows how to deal with `file-name-handler-alist', not
119;; the other places. 119;; the other places.
120;;;###autoload
120(defvar tramp-unified-filenames (not (featurep 'xemacs)) 121(defvar tramp-unified-filenames (not (featurep 'xemacs))
121 "Non-nil means to use unified Ange-FTP/Tramp filename syntax. 122 "Non-nil means to use unified Ange-FTP/Tramp filename syntax.
122Nil means to use a separate filename syntax for Tramp.") 123Nil means to use a separate filename syntax for Tramp.")