diff options
| author | Karoly Lorentey | 2004-07-18 21:49:24 +0000 |
|---|---|---|
| committer | Karoly Lorentey | 2004-07-18 21:49:24 +0000 |
| commit | 31d7e9bc5a474c2da8c40f4812ea3e09cd5fb82c (patch) | |
| tree | 729a3c238e43ed5625290e994d9ef0d09c18241a /lisp/ChangeLog | |
| parent | 4cb2afc64f004ba91ff0bd37cf8ca6669b228988 (diff) | |
| parent | cdfa3eccb179fe579a5e38949d0a2ad3d2757524 (diff) | |
| download | emacs-31d7e9bc5a474c2da8c40f4812ea3e09cd5fb82c.tar.gz emacs-31d7e9bc5a474c2da8c40f4812ea3e09cd5fb82c.zip | |
Merged in changes from CVS trunk.
Patches applied:
* lorentey@elte.hu--2004/emacs--hacks--0--patch-2
Prevent special events from appending dashes to the echo string.
* lorentey@elte.hu--2004/emacs--hacks--0--patch-4
Added ChangeLog entry.
* miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-454
Update from CVS
* miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-455
Bash the dashes
* miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-456
Update from CVS
* miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-457
Update from CVS
* miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-458
Update from CVS
* miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-459
Update from CVS
* miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-460
Update from CVS
git-archimport-id: lorentey@elte.hu--2004/emacs--multi-tty--0--patch-219
Diffstat (limited to 'lisp/ChangeLog')
| -rw-r--r-- | lisp/ChangeLog | 131 |
1 files changed, 131 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index b860134af46..876646163e3 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,126 @@ | |||
| 1 | 2004-07-17 Kai Grossjohann <kai.grossjohann@gmx.net> | ||
| 2 | |||
| 3 | * net/tramp.el (tramp-handle-verify-visited-file-modtime): New | ||
| 4 | docstring. From Luc Teirlinck. | ||
| 5 | |||
| 6 | 2004-07-17 Luc Teirlinck <teirllm@auburn.edu> | ||
| 7 | |||
| 8 | * autorevert.el: Describe `Auto Revert Tail Mode' in `Commentary' | ||
| 9 | section. | ||
| 10 | (auto-revert-handler): Do not check `auto-revert-tail-mode' for | ||
| 11 | non-file buffers. We know it is nil. | ||
| 12 | |||
| 13 | 2004-07-17 Kai Grossjohann <kai.grossjohann@gmx.net> | ||
| 14 | |||
| 15 | Sync with Tramp 2.0.43. | ||
| 16 | |||
| 17 | * net/tramp.el (tramp-handle-verify-visited-file-modtime): Remove | ||
| 18 | outdated comment. | ||
| 19 | (tramp-locked, tramp-locker): New variables for implementing a | ||
| 20 | global lock. | ||
| 21 | (tramp-sh-file-name-handler): Use them to implement the global | ||
| 22 | lock. | ||
| 23 | |||
| 24 | 2004-07-13 Michael Albinus <michael.albinus@gmx.de> | ||
| 25 | |||
| 26 | * net/tramp.el (all): Code cleanup. Change all `tramp-handle-xxx' | ||
| 27 | calls to respective `xxx` calls. | ||
| 28 | (tramp-process-alive-regexp): Precise doc string. | ||
| 29 | (tramp-multi-action-process-alive): New defun. | ||
| 30 | (tramp-multi-actions): Use it. | ||
| 31 | (tramp-handle-find-backup-file-name): `copy-tree' is available | ||
| 32 | since Emacs 21.4 only (XEmacs has it). Implementation rewritten | ||
| 33 | in order to avoid this function. | ||
| 34 | (tramp-handle-write-region): Set current buffer. If connection | ||
| 35 | wasn't open, `file-modes' has changed it accidently. Reported by | ||
| 36 | David Kastrup <dak@gnu.org>. | ||
| 37 | (tramp-enter-password, tramp-read-passwd): New arguments USER and | ||
| 38 | HOST. | ||
| 39 | (tramp-action-password, tramp-multi-action-password): Apply it. | ||
| 40 | (tramp-open-connection-rsh): If a port is given, the Tramp buffer | ||
| 41 | name must still contain the port number. Otherwise, we have two | ||
| 42 | Tramp buffers, with all the confusion. Reported by Myron Selby | ||
| 43 | <myron@xytech.com> and Rolf Dubitzky | ||
| 44 | <Dubitzky@physi.uni-heidelberg.de>. | ||
| 45 | |||
| 46 | * net/tramp-smb.el (tramp-smb-open-connection): Apply USER and | ||
| 47 | HOST to `tramp-enter-passwd'. | ||
| 48 | |||
| 49 | * net/tramp-vc.el (all): Code cleanup. Change all | ||
| 50 | `tramp-handle-xxx' calls to respective `xxx` calls. | ||
| 51 | |||
| 52 | 2004-07-17 Jonathan Yavner <jyavner@member.fsf.org> | ||
| 53 | |||
| 54 | * emacs-lisp/testcover.el: New category "potentially-1valued" for | ||
| 55 | functions that are not erroneous if either 1-valued or | ||
| 56 | multi-valued. Detect functions in this class. | ||
| 57 | (testcover-1value-functions, testcover-compose-functions, | ||
| 58 | testcover-progn-functions) Added some additional functions to lists. | ||
| 59 | (testcover-mark): Bugfix when marking up the definition for an | ||
| 60 | empty function. | ||
| 61 | |||
| 62 | 2004-07-17 Richard M. Stallman <rms@gnu.org> | ||
| 63 | |||
| 64 | * replace.el (occur-read-primary-args): Pass default to read-from-minibuffer. | ||
| 65 | |||
| 66 | * mail/footnote.el (footnote-section-tag): Use defcustom. | ||
| 67 | |||
| 68 | * font-lock.el (font-lock-add-keywords, font-lock-remove-keywords): | ||
| 69 | Compile font-lock-keywords, not KEYWORDS. | ||
| 70 | (lisp-font-lock-keywords-2): Add multiple-value-prog1, go. | ||
| 71 | Add warn, check-type. Handle cerror like error. | ||
| 72 | |||
| 73 | 2004-07-14 Daniel Pfeiffer <occitan@esperanto.org> | ||
| 74 | |||
| 75 | * progmodes/which-func.el (which-func-keymap): New var. | ||
| 76 | (which-func-face): New face. | ||
| 77 | (which-func-format): Use them. | ||
| 78 | |||
| 79 | 2004-07-16 Stephan Stahl <stahl@eos.franken.de> (tiny change) | ||
| 80 | |||
| 81 | * buff-menu.el (list-buffers-noselect): Append the buffer's | ||
| 82 | process status to its mode name. | ||
| 83 | |||
| 84 | 2004-07-16 Kim F. Storm <storm@cua.dk> | ||
| 85 | |||
| 86 | * simple.el (inhibit-mark-movement): New defvar. | ||
| 87 | (beginning-of-buffer, end-of-buffer): Do not push mark if | ||
| 88 | inhibit-mark-movement is non-nil or C-u prefix is given. | ||
| 89 | |||
| 90 | * emulation/cua-base.el (cua--preserve-mark-commands): New defvar. | ||
| 91 | Init to beginning-of-buffer and end-of-buffer. | ||
| 92 | (cua--undo-push-mark): New defvar. | ||
| 93 | (cua--pre-command-handler): Set inhibit-mark-movement if mark is | ||
| 94 | already active and command is in cua--preserve-mark-commands. | ||
| 95 | Also fix check for shift modifier on non-window systems. | ||
| 96 | (cua--post-command-handler): Clear inhibit-mark-movement if set. | ||
| 97 | |||
| 98 | 2004-07-14 Luc Teirlinck <teirllm@auburn.edu> | ||
| 99 | |||
| 100 | * calendar/cal-dst.el (calendar-time-from-absolute): Return a list | ||
| 101 | of two integers, instead of a cons. | ||
| 102 | |||
| 103 | * net/tramp.el (tramp-handle-verify-visited-file-modtime): | ||
| 104 | `visited-file-modtime' now returns a list of two integers, instead | ||
| 105 | of a cons. | ||
| 106 | |||
| 107 | * dired.el (dired-directory-changed-p): Ditto. | ||
| 108 | |||
| 109 | * progmodes/grep.el (grep): Doc fix. | ||
| 110 | |||
| 111 | 2004-07-14 Daniel Pfeiffer <occitan@esperanto.org> | ||
| 112 | |||
| 113 | * autorevert.el (auto-revert-tail-mode) | ||
| 114 | (auto-revert-tail-mode-text, auto-revert-tail-pos): New vars. | ||
| 115 | (auto-revert-mode): Turn off auto-revert-tail-mode, so we're not | ||
| 116 | in both at the same time. | ||
| 117 | (auto-revert-tail-mode): New command. | ||
| 118 | (turn-on-auto-revert-tail-mode, auto-revert-tail-handler): New funs. | ||
| 119 | (auto-revert-handler): Revert only either tail or whole file. | ||
| 120 | |||
| 121 | * bindings.el (mode-line-mode-menu): Fix alphabetical ordering and | ||
| 122 | add auto-revert-tail-mode. | ||
| 123 | |||
| 1 | 2004-07-12 Vinicius Jose Latorre <viniciusjl@ig.com.br> | 124 | 2004-07-12 Vinicius Jose Latorre <viniciusjl@ig.com.br> |
| 2 | 125 | ||
| 3 | * printing.el: Doc fix. Change name of some funs. | 126 | * printing.el: Doc fix. Change name of some funs. |
| @@ -1475,6 +1598,14 @@ | |||
| 1475 | (timer-event-handler): Set triggered-p element non-nil while running | 1598 | (timer-event-handler): Set triggered-p element non-nil while running |
| 1476 | the timer function. | 1599 | the timer function. |
| 1477 | 1600 | ||
| 1601 | 2004-05-14 Stefan Monnier <monnier@iro.umontreal.ca> | ||
| 1602 | |||
| 1603 | * descr-text.el (describe-char-unicode-data) | ||
| 1604 | (describe-char-unicodedata-file): Re-enable the unicode code now that | ||
| 1605 | the licensing issues have been cleared in the unicode-4 license. | ||
| 1606 | (describe-text-properties-1): Remove unused `overlay' var. | ||
| 1607 | (describe-char): Remove unused var `buffer'. | ||
| 1608 | |||
| 1478 | 2004-05-14 David Ponce <david@dponce.com> | 1609 | 2004-05-14 David Ponce <david@dponce.com> |
| 1479 | 1610 | ||
| 1480 | * tree-widget.el: New file. | 1611 | * tree-widget.el: New file. |