diff options
| author | Kim F. Storm | 2003-01-12 22:23:22 +0000 |
|---|---|---|
| committer | Kim F. Storm | 2003-01-12 22:23:22 +0000 |
| commit | afd250cb7306e0227be62f499f29607fc2b8b046 (patch) | |
| tree | ed1f94b1023bdd07dacf26d30530d346f6c74b79 | |
| parent | ad797e566249a4c3441df5ba8ef2a737ff7cc37a (diff) | |
| download | emacs-afd250cb7306e0227be62f499f29607fc2b8b046.tar.gz emacs-afd250cb7306e0227be62f499f29607fc2b8b046.zip | |
*** empty log message ***
| -rw-r--r-- | lisp/ChangeLog | 16 | ||||
| -rw-r--r-- | src/ChangeLog | 1 |
2 files changed, 17 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 697957277fc..1c12b899718 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,19 @@ | |||
| 1 | 2003-01-13 Kim F. Storm <storm@cua.dk> | ||
| 2 | |||
| 3 | * ido.el (ido-enable-tramp-completion): New defcustom. | ||
| 4 | (ido-enter-single-matching-directory): Change default to 'slash. | ||
| 5 | (ido-is-tramp-root): New defun. | ||
| 6 | (ido-is-root-directory, ido-is-ftp-directory, ido-is-slow-ftp-host) | ||
| 7 | (ido-may-cache-directory, ido-final-slash, ido-read-internal) | ||
| 8 | (ido-complete, ido-make-file-list1, ido-make-dir-list1): | ||
| 9 | Handle tramp completion. | ||
| 10 | (ido-file-name-all-completions1): New defun for tramp completion. | ||
| 11 | (ido-file-name-all-completions): Use it. | ||
| 12 | (ido-set-matches1): Relax matching of text with trailing slash. | ||
| 13 | (ido-exhibit): Handle tramp completion. | ||
| 14 | Simplified code using nested cond forms using new `refresh' var. | ||
| 15 | Fixed handling of /~user/ paths. | ||
| 16 | |||
| 1 | 2003-01-12 Andreas Schwab <schwab@suse.de> | 17 | 2003-01-12 Andreas Schwab <schwab@suse.de> |
| 2 | 18 | ||
| 3 | * arc-mode.el (archive-mode-map): Use command remapping instead of | 19 | * arc-mode.el (archive-mode-map): Use command remapping instead of |
diff --git a/src/ChangeLog b/src/ChangeLog index c3464486f70..7314d53fc30 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -4,6 +4,7 @@ | |||
| 4 | 4 | ||
| 5 | * process.c: (QCvars): New variable. | 5 | * process.c: (QCvars): New variable. |
| 6 | (syms_of_process): Intern and staticpro it. | 6 | (syms_of_process): Intern and staticpro it. |
| 7 | (Fset_process_contact): Removed function. | ||
| 7 | (Fprocess_variable, Fset_process_variable): New functions. | 8 | (Fprocess_variable, Fset_process_variable): New functions. |
| 8 | (syms_of_process): Defsubr them. | 9 | (syms_of_process): Defsubr them. |
| 9 | (Fstart_process): Initialize private_vars plist to nil. | 10 | (Fstart_process): Initialize private_vars plist to nil. |