diff options
| author | Stefan Monnier | 2004-10-12 22:55:48 +0000 |
|---|---|---|
| committer | Stefan Monnier | 2004-10-12 22:55:48 +0000 |
| commit | adc182c8af3500b3c4fe37f8ecd1438e87351995 (patch) | |
| tree | 242a02bb1a6ffca803111953090b87cc87d4276c | |
| parent | 414da5abebe397a6c86ae7eeb9287036760dd808 (diff) | |
| download | emacs-adc182c8af3500b3c4fe37f8ecd1438e87351995.tar.gz emacs-adc182c8af3500b3c4fe37f8ecd1438e87351995.zip | |
*** empty log message ***
| -rw-r--r-- | lisp/ChangeLog | 69 |
1 files changed, 49 insertions, 20 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 06b7ebd0d49..58d04cf1d6f 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -3,20 +3,25 @@ | |||
| 3 | Sync with Tramp 2.0.45. | 3 | Sync with Tramp 2.0.45. |
| 4 | 4 | ||
| 5 | * net/tramp.el (top): Apply `def-edebug-spec' only if function is | 5 | * net/tramp.el (top): Apply `def-edebug-spec' only if function is |
| 6 | defined. This is not the case for XEmacs without package | 6 | defined. This is not the case for XEmacs without package "edebug". |
| 7 | "edebug". | ||
| 8 | (tramp-set-auto-save-file-modes): Set permissions of autosaved | 7 | (tramp-set-auto-save-file-modes): Set permissions of autosaved |
| 9 | remote files to the permissions of the original file. This is not | 8 | remote files to the permissions of the original file. This is not |
| 10 | the case for Emacs < 21.3.50 and XEmacs < 21.5. Add function to | 9 | the case for Emacs < 21.3.50 and XEmacs < 21.5. Add function to |
| 11 | `auto-save-hook'. Reported by Thomas Prokosch <thomas@nadev.net>. | 10 | `auto-save-hook'. Reported by Thomas Prokosch <thomas@nadev.net>. |
| 12 | (tramp-perl-decode): Fixed an error in Perl implementation. | 11 | (tramp-perl-decode): Fix an error in Perl implementation. |
| 13 | $pending must be cleared every loop. Reported by Benjamin Place | 12 | $pending must be cleared every loop. Reported by Benjamin Place |
| 14 | <benjaminplace@sprintmail.com> | 13 | <benjaminplace@sprintmail.com> |
| 15 | 14 | ||
| 16 | * net/tramp-smb.el (tramp-smb-advice-PC-do-completion): Don't | 15 | * net/tramp-smb.el (tramp-smb-advice-PC-do-completion): |
| 17 | activate advice during definition. This is done later on, | 16 | Don't activate advice during definition. This is done later on, |
| 18 | depending on test result of `substitute-in-file-name'. Suggested | 17 | depending on test result of `substitute-in-file-name'. |
| 19 | by Stefan Monnier <monnier@iro.umontreal.ca>. | 18 | Suggested by Stefan Monnier <monnier@iro.umontreal.ca>. |
| 19 | |||
| 20 | 2004-10-12 Stefan Monnier <monnier@iro.umontreal.ca> | ||
| 21 | |||
| 22 | * pcvs-parse.el (cvs-parse-commit): Fix parsing for new commit message. | ||
| 23 | |||
| 24 | * emacs-lisp/lisp.el (mark-sexp): Preserve direction when repeating. | ||
| 20 | 25 | ||
| 21 | 2004-10-12 David Ponce <david@dponce.com> | 26 | 2004-10-12 David Ponce <david@dponce.com> |
| 22 | 27 | ||
| @@ -31,11 +36,9 @@ | |||
| 31 | 36 | ||
| 32 | 2004-10-12 Kenichi Handa <handa@m17n.org> | 37 | 2004-10-12 Kenichi Handa <handa@m17n.org> |
| 33 | 38 | ||
| 34 | * international/mule.el (coding-system-equal): Moved from | 39 | * international/mule.el (coding-system-equal): Move from mule-util.el. |
| 35 | mule-util.el. | ||
| 36 | 40 | ||
| 37 | * international/mule-util.el (coding-system-equal): Moved to | 41 | * international/mule-util.el (coding-system-equal): Move to mule.el. |
| 38 | mule.el. | ||
| 39 | 42 | ||
| 40 | 2004-10-12 Kim F. Storm <storm@cua.dk> | 43 | 2004-10-12 Kim F. Storm <storm@cua.dk> |
| 41 | 44 | ||
| @@ -48,6 +51,12 @@ | |||
| 48 | * subr.el (substitute-key-definition): Mention command remapping | 51 | * subr.el (substitute-key-definition): Mention command remapping |
| 49 | in doc string. | 52 | in doc string. |
| 50 | 53 | ||
| 54 | 2004-10-11 Stefan <monnier@iro.umontreal.ca> | ||
| 55 | |||
| 56 | * pcvs-defs.el (pcl-cvs-load-hook): Remove unused var. | ||
| 57 | |||
| 58 | * font-lock.el (font-lock-apply-highlight): Fix last change. | ||
| 59 | |||
| 51 | 2004-10-11 Simon Josefsson <jas@extundo.com> | 60 | 2004-10-11 Simon Josefsson <jas@extundo.com> |
| 52 | 61 | ||
| 53 | * mail/smtpmail.el (smtpmail-open-stream): Look for | 62 | * mail/smtpmail.el (smtpmail-open-stream): Look for |
| @@ -56,6 +65,15 @@ | |||
| 56 | (smtpmail-open-stream): Don't overwrite user settings of | 65 | (smtpmail-open-stream): Don't overwrite user settings of |
| 57 | starttls-extra-arguments and starttls-extra-args. | 66 | starttls-extra-arguments and starttls-extra-args. |
| 58 | 67 | ||
| 68 | 2004-10-10 Stefan <monnier@iro.umontreal.ca> | ||
| 69 | |||
| 70 | * comint.el (comint-mouse-insert-input): Remove. | ||
| 71 | (comint-insert-input): Make it work for mouse bindings. | ||
| 72 | (comint-mode-map): Move defs into the declaration. | ||
| 73 | (comint-output-filter): Typo. | ||
| 74 | |||
| 75 | * diff-mode.el (diff-current-defun): Fix 2004-06-13's change. | ||
| 76 | |||
| 59 | 2004-10-10 Kai Grossjohann <kai.grossjohann@gmx.net> | 77 | 2004-10-10 Kai Grossjohann <kai.grossjohann@gmx.net> |
| 60 | 78 | ||
| 61 | * net/ange-ftp.el (ange-ftp-remote-shell): Remove variable. | 79 | * net/ange-ftp.el (ange-ftp-remote-shell): Remove variable. |
| @@ -74,6 +92,20 @@ | |||
| 74 | (vc-annotate-display-select): Only call vc-annotate-mode | 92 | (vc-annotate-display-select): Only call vc-annotate-mode |
| 75 | if we're not in that mode already. | 93 | if we're not in that mode already. |
| 76 | 94 | ||
| 95 | 2004-10-09 Stefan Monnier <monnier@iro.umontreal.ca> | ||
| 96 | |||
| 97 | * imenu.el (imenu--completion-buffer): Don't return t for rescan. | ||
| 98 | (imenu-choose-buffer-index): Check here for rescan instead. | ||
| 99 | |||
| 100 | * font-lock.el (font-lock-apply-highlight): Explicitly check the case | ||
| 101 | where the face expression evals to nil. | ||
| 102 | |||
| 103 | * textmodes/tex-mode.el (tex-font-lock-append-prop): New fun. | ||
| 104 | (tex-font-lock-keywords-2): Use it. | ||
| 105 | (tex-font-lock-syntactic-keywords): Fix the `verbatim' treatment. | ||
| 106 | |||
| 107 | * emacs-lisp/lisp-mode.el (lisp-fill-paragraph): Fix backslashes. | ||
| 108 | |||
| 77 | 2004-10-09 Kim F. Storm <storm@cua.dk> | 109 | 2004-10-09 Kim F. Storm <storm@cua.dk> |
| 78 | 110 | ||
| 79 | * subr.el (progress-reporter-update): Define before first usage. | 111 | * subr.el (progress-reporter-update): Define before first usage. |
| @@ -87,8 +119,8 @@ | |||
| 87 | 119 | ||
| 88 | 2004-10-08 Peter Seibel <peter@javamonkey.com> (tiny change) | 120 | 2004-10-08 Peter Seibel <peter@javamonkey.com> (tiny change) |
| 89 | 121 | ||
| 90 | * emacs-lisp/lisp-mode.el (lisp-fill-paragraph): Change | 122 | * emacs-lisp/lisp-mode.el (lisp-fill-paragraph): |
| 91 | paragraph-start regexp so we don't fill code starting with #'( | 123 | Change paragraph-start regexp so we don't fill code starting with #'(. |
| 92 | 124 | ||
| 93 | 2004-10-08 Sebastien Kirche <seki@seki.fr> (tiny change) | 125 | 2004-10-08 Sebastien Kirche <seki@seki.fr> (tiny change) |
| 94 | 126 | ||
| @@ -116,13 +148,11 @@ | |||
| 116 | 2004-10-08 Masatake YAMATO <jet@gyve.org> | 148 | 2004-10-08 Masatake YAMATO <jet@gyve.org> |
| 117 | 149 | ||
| 118 | * server.el (server-process-filter): Wrap `process-send-region' | 150 | * server.el (server-process-filter): Wrap `process-send-region' |
| 119 | by `condition-case' to guard the case when the pipe to PROC is | 151 | by `condition-case' to guard the case when the pipe to PROC is closed. |
| 120 | closed. | ||
| 121 | 152 | ||
| 122 | 2004-10-07 Mark A. Hershberger <mah@everybody.org> | 153 | 2004-10-07 Mark A. Hershberger <mah@everybody.org> |
| 123 | 154 | ||
| 124 | * xml.el (xml-substitute-special): Limit handling of external | 155 | * xml.el (xml-substitute-special): Limit handling of external entities. |
| 125 | entities. | ||
| 126 | 156 | ||
| 127 | 2004-10-06 Nick Roberts <nickrob@snap.net.nz> | 157 | 2004-10-06 Nick Roberts <nickrob@snap.net.nz> |
| 128 | 158 | ||
| @@ -167,9 +197,8 @@ | |||
| 167 | 197 | ||
| 168 | 2004-10-04 Luc Teirlinck <teirllm@auburn.edu> | 198 | 2004-10-04 Luc Teirlinck <teirllm@auburn.edu> |
| 169 | 199 | ||
| 170 | * textmodes/enriched.el (enriched-mode-map): Give | 200 | * textmodes/enriched.el (enriched-mode-map): Give `set-left-margin' and |
| 171 | `set-left-margin' and `set-right-margin' bindings that follow the | 201 | `set-right-margin' bindings that follow the minor mode conventions. |
| 172 | minor mode conventions. | ||
| 173 | 202 | ||
| 174 | 2004-10-03 Stefan <monnier@iro.umontreal.ca> | 203 | 2004-10-03 Stefan <monnier@iro.umontreal.ca> |
| 175 | 204 | ||