diff options
Diffstat (limited to 'lisp/ChangeLog')
| -rw-r--r-- | lisp/ChangeLog | 204 |
1 files changed, 204 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 82f1dc88cb9..7f8b66c0e32 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,207 @@ | |||
| 1 | 2006-09-04 John Paul Wallington <jpw@pobox.com> | ||
| 2 | |||
| 3 | * simple.el (completion-show-help): New defcustom. | ||
| 4 | (completion-setup-function): Heed it. | ||
| 5 | |||
| 6 | 2006-09-04 Dan Nicolaescu <dann@ics.uci.edu> | ||
| 7 | |||
| 8 | * term/xterm.el (terminal-init-xterm): Add C-M- bindings. | ||
| 9 | |||
| 10 | 2006-09-04 Richard Stallman <rms@gnu.org> | ||
| 11 | |||
| 12 | * mail/rmail-spam-filter.el (rsf-scanning-messages-now): Doc fix. | ||
| 13 | (rsf-min-region-to-spam-list): Doc fix. | ||
| 14 | (rsf-add-content-type-field): Doc fix. | ||
| 15 | |||
| 16 | * simple.el (kill-region): Explicitly test there is a region. | ||
| 17 | |||
| 18 | 2006-09-04 Chong Yidong <cyd@stupidchicken.com> | ||
| 19 | |||
| 20 | * mail/feedmail.el (feedmail-buffer-to-sendmail): Look for | ||
| 21 | sendmail in several common directories. | ||
| 22 | |||
| 23 | * mail/sendmail.el (sendmail-program): Moved here from pathe.el. | ||
| 24 | |||
| 25 | * paths.el (sendmail-program): Removed. | ||
| 26 | |||
| 27 | 2006-09-04 Daiki Ueno <ueno@unixuser.org> | ||
| 28 | |||
| 29 | * pgg-gpg.el (pgg-gpg-process-region): Revert two patches from Satyaki | ||
| 30 | Das. http://article.gmane.org/gmane.emacs.gnus.general/49947 | ||
| 31 | http://article.gmane.org/gmane.emacs.gnus.general/50457 | ||
| 32 | |||
| 33 | 2006-09-03 Chong Yidong <cyd@stupidchicken.com> | ||
| 34 | |||
| 35 | * cus-edit.el (custom-group-menu-create): Avoid deactivating the | ||
| 36 | mark after running the menu filter. | ||
| 37 | |||
| 38 | 2006-09-03 Juri Linkov <juri@jurta.org> | ||
| 39 | |||
| 40 | * international/quail.el (quail-defrule-internal): Add a check | ||
| 41 | if a key is a vector. | ||
| 42 | |||
| 43 | 2006-09-02 Juri Linkov <juri@jurta.org> | ||
| 44 | |||
| 45 | * man.el (Man-topic-history): New variable. | ||
| 46 | (man): Use it. | ||
| 47 | |||
| 48 | * woman.el (woman-topic-history): Change defvar to defvaralias | ||
| 49 | for symbol `Man-topic-history'. | ||
| 50 | |||
| 51 | * shell.el (shell-filter-ctrl-a-ctrl-b): Check if | ||
| 52 | `comint-last-output-start' is a marker by using `markerp' and | ||
| 53 | check if it has a position by using `marker-position', and use | ||
| 54 | this position for `goto-char'. | ||
| 55 | |||
| 56 | * international/quail.el (quail-defrule-internal): Add missing | ||
| 57 | `error' call for null key. | ||
| 58 | |||
| 59 | 2006-09-02 Ryan Yeske <rcyeske@gmail.com> | ||
| 60 | |||
| 61 | * rcirc.el (rcirc-keywords): New variable. | ||
| 62 | (rcirc-bright-nicks, rcirc-dim-nicks): New variables. | ||
| 63 | (rcirc-bright-nick-regexp, rcirc-dim-nick-regexp): Remove | ||
| 64 | variables. | ||
| 65 | (rcirc-responses-no-activity): New function. | ||
| 66 | (rcirc-handler-generic): Check for responses in above. | ||
| 67 | (rcirc-process-command): Add ?: character to arguments of raw | ||
| 68 | server commands. | ||
| 69 | (rcirc-format-response-string): Use `rcirc-bright-nicks' and | ||
| 70 | `rcirc-dim-nicks'. | ||
| 71 | (rcirc-gray-toggle): Remove unused variable. | ||
| 72 | (rcirc-print): Remove some tracking logic, which is moved into | ||
| 73 | markup functions. | ||
| 74 | (rcirc-activity-types): Was `rcirc-activity-type', now a list of | ||
| 75 | types. | ||
| 76 | (rcirc-activity-string): Look for 'keyword in activity-types. | ||
| 77 | (rcirc-window-configuration-change): Don't erase overlay-arrow | ||
| 78 | unnecessarily. | ||
| 79 | (rcirc-add-or-remove): New function. | ||
| 80 | (rcirc-cmd-ignore): Use it. | ||
| 81 | (rcirc-message-leader): Remove unused function. | ||
| 82 | (rcicr-cmd-bright, rcirc-cmd-dim, rcirc-cmd-keyword): New commands. | ||
| 83 | (rcirc-add-face): New function. | ||
| 84 | (rcirc-facify): Use rcirc-add-face. | ||
| 85 | (rcirc-url-regexp): Add parens. | ||
| 86 | (rcirc-map-regexp): Remove function. | ||
| 87 | (rcirc-mangle-regexp): Remove function. | ||
| 88 | (rcirc-markup-text-functions): New variable. | ||
| 89 | (rcirc-markup-text): New function (replaces `rcirc-mangle-text'). | ||
| 90 | (rcirc-markup-body-text, rcirc-markup-attributes) | ||
| 91 | (rcirc-markup-my-nick, rcirc-markup-urls, rcirc-markup-keywords) | ||
| 92 | (rcirc-markup-bright-nicks): New markup handler functions. | ||
| 93 | (rcirc-nick-in-message-full-line): New face. | ||
| 94 | (rcirc-track-nick): Rename from `rcirc-mode-line-nick'. | ||
| 95 | (rcirc-track-keyword, rcirc-url, rcirc-keyword): New faces. | ||
| 96 | |||
| 97 | 2006-09-02 Martin Rudalics <rudalics@gmx.at> | ||
| 98 | |||
| 99 | * cus-start.el (hscroll-margin, hscroll-step) | ||
| 100 | (mode-line-in-non-selected-windows, mouse-autoselect-window) | ||
| 101 | (x-use-underline-position-properties): Change version to "22.1" | ||
| 102 | since they will appear there for the first time. | ||
| 103 | |||
| 104 | 2006-09-01 Chong Yidong <cyd@stupidchicken.com> | ||
| 105 | |||
| 106 | * imenu.el (imenu-update-menubar): Use buffer-chars-modified-tick. | ||
| 107 | |||
| 108 | 2006-08-31 Richard Stallman <rms@gnu.org> | ||
| 109 | |||
| 110 | * cus-edit.el (custom-save-variables): Slight cleanup. | ||
| 111 | (Custom-no-edit): Renamed from custom-no-edit. | ||
| 112 | (Custom-newline): Renamed from custom-newline. | ||
| 113 | (custom-mode-map): Use new names. | ||
| 114 | |||
| 115 | * emacs-lisp/easy-mmode.el (define-minor-mode): Reference manual | ||
| 116 | about customization, rather than M-x customize, in the doc string | ||
| 117 | made for the defcustom. | ||
| 118 | |||
| 119 | * emacs-lisp/trace.el (trace-function-background): Doc fix. | ||
| 120 | |||
| 121 | 2006-08-31 Romain Francoise <romain@orebokech.com> | ||
| 122 | |||
| 123 | * dired-x.el (dired-guess-shell-alist-default): Update. | ||
| 124 | |||
| 125 | 2006-08-31 Michael Mauger <mmaug@yahoo.com> | ||
| 126 | |||
| 127 | * custom.el (custom-theme-set-variables): Autoload packages before | ||
| 128 | sorting the variables. | ||
| 129 | |||
| 130 | 2006-08-30 Michael Kifer <kifer@cs.stonybrook.edu> | ||
| 131 | |||
| 132 | * viper-cmd.el (viper-special-read-and-insert-char): Convert events to | ||
| 133 | chars if XEmacs. | ||
| 134 | (viper-after-change-undo-hook): Check if undo-in-progress is bound. | ||
| 135 | |||
| 136 | 2006-08-30 Stefan Monnier <monnier@iro.umontreal.ca> | ||
| 137 | |||
| 138 | * progmodes/python.el (python-eldoc-function): Re-enable quit while | ||
| 139 | waiting for process. | ||
| 140 | |||
| 141 | 2006-08-30 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp> | ||
| 142 | |||
| 143 | * term/mac-win.el (mac-string-to-utxt): If adjustment for MacJapanese | ||
| 144 | results in ASCII-only string, encode original one directly. | ||
| 145 | |||
| 146 | 2006-08-29 Romain Francoise <romain@orebokech.com> | ||
| 147 | |||
| 148 | * startup.el (normal-splash-screen, fancy-splash-screens): | ||
| 149 | Make buffer read-only and arrange to enter view mode if necessary. | ||
| 150 | |||
| 151 | 2006-08-29 Chong Yidong <cyd@stupidchicken.com> | ||
| 152 | |||
| 153 | * hl-line.el (hl-line): New face. | ||
| 154 | (hl-line-face): Use it. | ||
| 155 | |||
| 156 | * image-mode.el (image-mode): Fix last fix. | ||
| 157 | Suggested by Kim F. Storm. | ||
| 158 | |||
| 159 | 2006-08-29 Michael Albinus <michael.albinus@gmx.de> | ||
| 160 | |||
| 161 | Sync with Tramp 2.0.54. | ||
| 162 | |||
| 163 | * net/tramp.el (tramp-convert-file-attributes): Call `eql' instead | ||
| 164 | of `=', because `tramp-get-remote-gid' might not always return an | ||
| 165 | integer when expected. | ||
| 166 | (tramp-register-file-name-handlers): `partial-completion-mode' is | ||
| 167 | unknown to XEmacs. | ||
| 168 | (tramp-time-diff): Don't use `floor', it might fail for large | ||
| 169 | differences. | ||
| 170 | (tramp-handle-make-auto-save-file-name): For Emacs 21, set | ||
| 171 | `tramp-auto-save-directory' if unset in order to guarantee unique | ||
| 172 | auto-save file names. | ||
| 173 | |||
| 174 | 2006-08-28 Chong Yidong <cyd@stupidchicken.com> | ||
| 175 | |||
| 176 | * image-mode.el (image-mode): Display image as text on a terminal. | ||
| 177 | |||
| 178 | 2006-08-28 Stefan Monnier <monnier@iro.umontreal.ca> | ||
| 179 | |||
| 180 | * progmodes/python.el (python-send-command): Simplify. | ||
| 181 | (run-python): Don't generate a new buffer unless `new' was specified. | ||
| 182 | Make sure we send `import emacs' to the proper process. | ||
| 183 | |||
| 184 | * progmodes/python.el (python-send-command): Don't wait for the command | ||
| 185 | to terminate. Don't fiddle with compilation-parsing-end. | ||
| 186 | |||
| 187 | 2006-08-28 Chong Yidong <cyd@stupidchicken.com> | ||
| 188 | |||
| 189 | * emacs-lisp/checkdoc.el (checkdoc-file-comments-engine): | ||
| 190 | Insert commentary after first line summary. | ||
| 191 | |||
| 192 | * woman.el (woman-follow): New function, based on `man-follow'. | ||
| 193 | (woman-mode-map): Use it. | ||
| 194 | |||
| 195 | * ibuffer.el (ibuffer-do-sort-by-recency): Perform full update | ||
| 196 | since ibuffer-do-sort-by-recency does not define a sorter. | ||
| 197 | |||
| 198 | 2006-08-28 Kim F. Storm <storm@cua.dk> | ||
| 199 | |||
| 200 | * find-dired.el (find-dired): Use shell-quote-argument to properly | ||
| 201 | escape ( and ) args. Also use it on {} and ; args in default | ||
| 202 | value of find-ls-option string. | ||
| 203 | (find-grep-dired): Use shell-quote-argument on {} and ; args. | ||
| 204 | |||
| 1 | 2006-08-27 Michael Olson <mwolson@gnu.org> | 205 | 2006-08-27 Michael Olson <mwolson@gnu.org> |
| 2 | 206 | ||
| 3 | * emacs-lisp/tq.el: Small grammar fix in comments. | 207 | * emacs-lisp/tq.el: Small grammar fix in comments. |