[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Emacs-diffs] Changes to emacs/lisp/ChangeLog
From: |
Stefan Monnier |
Subject: |
[Emacs-diffs] Changes to emacs/lisp/ChangeLog |
Date: |
Mon, 02 Sep 2002 21:16:34 -0400 |
Index: emacs/lisp/ChangeLog
diff -c emacs/lisp/ChangeLog:1.4271 emacs/lisp/ChangeLog:1.4272
*** emacs/lisp/ChangeLog:1.4271 Mon Sep 2 08:53:12 2002
--- emacs/lisp/ChangeLog Mon Sep 2 21:16:33 2002
***************
*** 1,16 ****
2002-09-02 Kai Gro,b_(Bjohann <address@hidden>
* net/tramp.el: Version 2.0.15 released.
(require 'base64): Most modern Emacsen have the base64
encode/decode functions built in, so test to see if they are bound
! before we go blindly requiring base64.el. From Steve Youngs
! <address@hidden>.
(tramp-feature-write-region-fix): XEmacs doesn't have a
'find-operation-coding-system' and this variable doesn't seem to
! be used anywhere so wrap it in (unless (featurep 'xemacs)). From
! Steve Youngs <address@hidden>.
! (tramp-methods): Remove duplicate definition of ssh1-old and
! ssh2-old.
(tramp-open-connection-su): Use user name "root" if no user name
is given.
--- 1,20 ----
+ 2002-09-02 Stefan Monnier <address@hidden>
+
+ * mail/sendmail.el (mail-mode): Don't set local-abbrev-table.
+ (mail-mode-abbrev-table): Set to text-mode-abbrev-table.
+
2002-09-02 Kai Gro,b_(Bjohann <address@hidden>
* net/tramp.el: Version 2.0.15 released.
(require 'base64): Most modern Emacsen have the base64
encode/decode functions built in, so test to see if they are bound
! before we go blindly requiring base64.el.
! From Steve Youngs <address@hidden>.
(tramp-feature-write-region-fix): XEmacs doesn't have a
'find-operation-coding-system' and this variable doesn't seem to
! be used anywhere so wrap it in (unless (featurep 'xemacs)).
! From Steve Youngs <address@hidden>.
! (tramp-methods): Remove duplicate definition of ssh1-old and ssh2-old.
(tramp-open-connection-su): Use user name "root" if no user name
is given.
***************
*** 25,31 ****
passing to tramp-invoke-ange-ftp 'set-file-modes.
(tramp-invoke-ange-ftp): `tramp-disable-ange-ftp' must be called
again after activating `ange-ftp'.
!
2002-09-02 Kim F. Storm <address@hidden>
* ido.el (ido-ignore-item-temp-list): New variable.
--- 29,35 ----
passing to tramp-invoke-ange-ftp 'set-file-modes.
(tramp-invoke-ange-ftp): `tramp-disable-ange-ftp' must be called
again after activating `ange-ftp'.
!
2002-09-02 Kim F. Storm <address@hidden>
* ido.el (ido-ignore-item-temp-list): New variable.
***************
*** 89,94 ****
--- 93,112 ----
* font-core.el (font-lock-change-mode): Avoid changing buffer
state in any way.
+ 2002-08-30 Stefan Monnier <address@hidden>
+
+ * emacs-lisp/easymenu.el (easy-menu-filter-return):
+ Handle the case where the filter returns a single menu entry.
+ (easy-menu-add): Improve docstring.
+ (easy-menu-current-active-maps): Remove.
+ (easy-menu-get-map): Use current-active-maps.
+
+ * cus-edit.el (custom-unlispify-menu-entry): Don't remove
+ the -p prefix from variables since they shouldn't have it anyway.
+ (custom-group-menu-create, customize-menu-create):
+ Only cdr if applicable, since custom-menu-create might return
+ a vector (i.e. a single menu entry).
+
2002-08-30 Edward M. Reingold <address@hidden>
* calendar/diary-lib.el (diary-mail-entries): Don't overwrite
***************
*** 149,157 ****
(occur-mode): Use it.
(occur-hook): Set default to nil.
2002-08-29 Richard M. Stallman <address@hidden>
! * emacs-lisp/bytecomp.el (byte-compile-warning-prefix):
Decide here whether to print which form we're compiling.
If we do that, still print file and line. Make file name
relative to default-directory. Print fewer newlines.
--- 167,194 ----
(occur-mode): Use it.
(occur-hook): Set default to nil.
+ 2002-08-29 Stefan Monnier <address@hidden>
+
+ * net/ange-ftp.el: Use match-string and drop useless `function's.
+ (ange-ftp-get-process): Bind `ange-ftp-this-user' and
+ `ange-ftp-this-host' before running ange-ftp-process-startup-hook.
+ (ange-ftp-ls-parser): Use `switches' arg instead of dynamic binding.
+ (ange-ftp-parse-dired-listing): Update the calls.
+ (dired-local-variables-file): Declare to shut quieten the compiler.
+ (ange-ftp-file-entry-active-p): Remove.
+ (ange-ftp-file-name-all-completions, ange-ftp-file-name-completion):
+ Don't exclude dangling symlinks.
+ (ange-ftp-file-name-completion-1): Make predicate optional.
+ (ange-ftp-parse-list-func-alist): Use add-to-list to update.
+ (ange-ftp-fix-name-for-bs2000): Use subst-char-in-string.
+ (ange-ftp-bs2000-posix-hook-installed): Remove.
+ (ange-ftp-add-bs2000-posix-host): Don't use it anymore.
+ (ange-ftp-bs2000-cd-to-posix): Use `ange-ftp-this-user' and
+ `ange-ftp-this-host' instead of `user' and `host'.
+
2002-08-29 Richard M. Stallman <address@hidden>
! * emacs-lisp/bytecomp.el (byte-compile-warning-prefix):
Decide here whether to print which form we're compiling.
If we do that, still print file and line. Make file name
relative to default-directory. Print fewer newlines.
***************
*** 162,168 ****
(byte-compile-warning-series): New function.
(byte-compile-file): Set byte-compile-last-logged-file, don't bind it.
(byte-compile-display-log-head-p): Function deleted.
!
* warnings.el (warning-series): Now can be a marker, not an integer.
(display-warning): Handle new value for warning-series.
--- 199,205 ----
(byte-compile-warning-series): New function.
(byte-compile-file): Set byte-compile-last-logged-file, don't bind it.
(byte-compile-display-log-head-p): Function deleted.
!
* warnings.el (warning-series): Now can be a marker, not an integer.
(display-warning): Handle new value for warning-series.
***************
*** 172,184 ****
2002-08-29 Kim F. Storm <address@hidden>
! * kmacro.el: Changed default bindings from F7/F8 to F3/F4.
! Changed default binding of C-x e to kmacro-end-or-call-macro.
(kmacro-call-repeat-key, kmacro-call-repeat-with-arg): New custom
variables.
(kmacro-get-prefix-arg): New function.
! (kmacro-repeat-on-last-key): Renamed from kmacro-repeat-loop and
improved.
! Callers changed.
(kmacro-call-macro): Repeat macro by repeating last key or
key defined in kmacro-call-repeat-key. New third arg non-nil
means to end current macro.
--- 209,221 ----
2002-08-29 Kim F. Storm <address@hidden>
! * kmacro.el: Change default bindings from F7/F8 to F3/F4.
! Change default binding of C-x e to kmacro-end-or-call-macro.
(kmacro-call-repeat-key, kmacro-call-repeat-with-arg): New custom
variables.
(kmacro-get-prefix-arg): New function.
! (kmacro-repeat-on-last-key): Rename from kmacro-repeat-loop and
! improve. Callers changed.
(kmacro-call-macro): Repeat macro by repeating last key or
key defined in kmacro-call-repeat-key. New third arg non-nil
means to end current macro.
- [Emacs-diffs] Changes to emacs/lisp/ChangeLog, Richard M. Stallman, 2002/09/01
- [Emacs-diffs] Changes to emacs/lisp/ChangeLog, Kim F. Storm, 2002/09/01
- [Emacs-diffs] Changes to emacs/lisp/ChangeLog, Richard M. Stallman, 2002/09/01
- [Emacs-diffs] Changes to emacs/lisp/ChangeLog, Kim F. Storm, 2002/09/02
- [Emacs-diffs] Changes to emacs/lisp/ChangeLog, Kai Großjohann, 2002/09/02
- [Emacs-diffs] Changes to emacs/lisp/ChangeLog,
Stefan Monnier <=
- [Emacs-diffs] Changes to emacs/lisp/ChangeLog, Kenichi Handa, 2002/09/03
- [Emacs-diffs] Changes to emacs/lisp/ChangeLog, Pavel Janík, 2002/09/03
- [Emacs-diffs] Changes to emacs/lisp/ChangeLog, Kenichi Handa, 2002/09/04
- [Emacs-diffs] Changes to emacs/lisp/ChangeLog, Andre Spiegel, 2002/09/04
- [Emacs-diffs] Changes to emacs/lisp/ChangeLog, John Paul Wallington, 2002/09/04
- [Emacs-diffs] Changes to emacs/lisp/ChangeLog, Kenichi Handa, 2002/09/04
- [Emacs-diffs] Changes to emacs/lisp/ChangeLog, Richard M. Stallman, 2002/09/04
- [Emacs-diffs] Changes to emacs/lisp/ChangeLog, Andre Spiegel, 2002/09/05
- [Emacs-diffs] Changes to emacs/lisp/ChangeLog, Markus Rost, 2002/09/05
- [Emacs-diffs] Changes to emacs/lisp/ChangeLog, Richard M. Stallman, 2002/09/05