diff options
Diffstat (limited to 'lisp/ChangeLog')
| -rw-r--r-- | lisp/ChangeLog | 144 |
1 files changed, 142 insertions, 2 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 7c3842ea3a5..d65a446a376 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,7 +1,147 @@ | |||
| 1 | 2005-03-05 Luc Teirlinck <teirllm@auburn.edu> | ||
| 2 | |||
| 3 | * simple.el (goto-line): Remove unbalanced final parenthesis. | ||
| 4 | |||
| 5 | 2005-03-05 Richard M. Stallman <rms@gnu.org> | ||
| 6 | |||
| 7 | * simple.el (goto-line): Use a number at point as the default. | ||
| 8 | With C-u as arg, switch buffers. | ||
| 9 | |||
| 10 | 2005-03-05 Juri Linkov <juri@jurta.org> | ||
| 11 | |||
| 12 | * frame.el (blink-cursor-mode): Replace `emacs-quick-startup' | ||
| 13 | with `no-blinking-cursor'. | ||
| 14 | |||
| 15 | * startup.el (no-blinking-cursor): New defvar. | ||
| 16 | (command-line): Add `--no-blinking-cursor' to longopts. | ||
| 17 | Set `no-blinking-cursor' to t for command line arguments | ||
| 18 | -Q, -nbc, --no-blinking-cursor. Replace `emacs-quick-startup' | ||
| 19 | with `no-blinking-cursor' in the condition for calling | ||
| 20 | `blink-cursor-mode'. | ||
| 21 | |||
| 22 | 2005-03-04 Luc Teirlinck <teirllm@auburn.edu> | ||
| 23 | |||
| 24 | * menu-bar.el (menu-bar-make-mm-toggle): Doc fix. | ||
| 25 | (menu-bar-options-save): Add blink-cursor-mode. | ||
| 26 | (menu-bar-options-menu): Add blink-cursor-mode. | ||
| 27 | |||
| 28 | 2005-03-04 Ulf Jasper <ulf.jasper@web.de> | ||
| 29 | |||
| 30 | * calendar/icalendar.el (icalendar-version): Increase to 0.11. | ||
| 31 | (icalendar-export-file, icalendar-export-region) | ||
| 32 | (icalendar-import-file, icalendar-import-buffer): Add autoload | ||
| 33 | cookies. | ||
| 34 | (icalendar--convert-ical-to-diary): Fix problem with DURATION. | ||
| 35 | |||
| 36 | 2005-03-04 Lute Kamstra <lute@gnu.org> | ||
| 37 | |||
| 38 | * emacs-lisp/debug.el (debugger-step-after-exit): Make it a | ||
| 39 | defvar. | ||
| 40 | (debug-function-list): Ditto. | ||
| 41 | |||
| 42 | 2005-03-04 Robert J. Chassell <bob@rattlesnake.com> | ||
| 43 | |||
| 44 | * textmodes/texinfmt.el (texinfo-append-refill): | ||
| 45 | Redefine the types of line to which @refill | ||
| 46 | is not appended by replacing a search for `@refill\\|@bye' with | ||
| 47 | `@refill\\|^[ \t]*@'. The intent is to solve both the `@end | ||
| 48 | itemize@refill' bug and the unfilled long lines bug. | ||
| 49 | (texinfmt-version): update number and date. | ||
| 50 | |||
| 51 | 2005-03-04 Reiner Steib <Reiner.Steib@gmx.de> | ||
| 52 | |||
| 53 | * international/code-pages.el (windows-1250, windows-125[2-8]) | ||
| 54 | (iso-8859-10, -13, -16, georgian-ps): Add autoload cookies. | ||
| 55 | |||
| 56 | 2005-03-03 Stefan Monnier <monnier@iro.umontreal.ca> | ||
| 57 | |||
| 58 | * frame.el (blink-cursor-mode): `emacs-quick-startup' may not be | ||
| 59 | bound yet. | ||
| 60 | |||
| 61 | 2005-03-02 Romain Francoise <romain@orebokech.com> | ||
| 62 | |||
| 63 | * ibuf-ext.el (ibuffer-filter-disable): Move back to the current | ||
| 64 | buffer after removing limits. | ||
| 65 | (ibuffer-pop-filter): Ditto. | ||
| 66 | Update copyright. | ||
| 67 | |||
| 68 | 2005-03-02 Miles Bader <miles@gnu.org> | ||
| 69 | |||
| 70 | * button.el (make-text-button): If the user doesn't specify a | ||
| 71 | type, use the default. Rewrite to use `add-text-properties' and | ||
| 72 | plist functions. | ||
| 73 | |||
| 74 | 2005-03-01 Lute Kamstra <lute@gnu.org> | ||
| 75 | |||
| 76 | * emacs-lisp/debug.el (inhibit-debug-on-entry): Add docstring. | ||
| 77 | (debugger-jumping-flag): New var. | ||
| 78 | (debug-entry-code): Use it. | ||
| 79 | (debugger-jump): Use debugger-jumping-flag and add | ||
| 80 | debugger-reenable to post-command-hook. | ||
| 81 | (debugger-reenable): Use debugger-jumping-flag and remove itself | ||
| 82 | from post-command-hook. | ||
| 83 | (debug, debug-on-entry, cancel-debug-on-entry): Remove call to | ||
| 84 | debugger-reenable. | ||
| 85 | |||
| 86 | 2005-03-01 Robert J. Chassell <bob@rattlesnake.com> | ||
| 87 | |||
| 88 | * textmodes/texinfmt.el (texinfo-no-refill-regexp): Comment out | ||
| 89 | inclusion of "itemize\\|", which may be unnecessary, is certainly | ||
| 90 | inelegant, and stops refilling in itemize lists when formatting | ||
| 91 | Japanese Texinfo files to Info. | ||
| 92 | Update copyright to 2005. | ||
| 93 | |||
| 94 | 2005-03-01 Nick Roberts <nickrob@snap.net.nz> | ||
| 95 | |||
| 96 | * progmodes/gdb-ui.el (gdb-get-location): Use a warning instead | ||
| 97 | of an error if GDB can't find the source file. | ||
| 98 | |||
| 99 | 2005-03-01 Glenn Morris <gmorris@ast.cam.ac.uk> | ||
| 100 | |||
| 101 | * calendar/calendar.el (redraw-calendar): Work from any buffer, | ||
| 102 | not just the calendar. | ||
| 103 | |||
| 104 | * calendar/diary-lib.el (mark-diary-entries): Remove any old marks | ||
| 105 | first. | ||
| 106 | (diary-redraw-calendar): New function. | ||
| 107 | (make-diary-entry): Add diary-redraw-calendar to local | ||
| 108 | write-contents-functions. Turn off selective display before | ||
| 109 | inserting in diary. | ||
| 110 | |||
| 111 | 2005-03-01 Kim F. Storm <storm@cua.dk> | ||
| 112 | |||
| 113 | * emacs-lisp/copyright.el (copyright-fix-years): New command. | ||
| 114 | |||
| 115 | 2005-03-01 Lute Kamstra <lute@gnu.org> | ||
| 116 | |||
| 117 | * emacs-lisp/debug.el (debug-on-entry-1): Reimplement to make sure | ||
| 118 | that debug-entry-code can be safely removed from a function while | ||
| 119 | this code is being evaluated. Revert the 2005-02-27 change as the | ||
| 120 | new implementation no longer requires it. Make sure that a | ||
| 121 | function body containing just a string is not mistaken for a | ||
| 122 | docstring. | ||
| 123 | (debug): Skip one more frame in case of debug on entry. | ||
| 124 | (debugger-setup-buffer): Delete one more frame line in case of | ||
| 125 | debug on entry. | ||
| 126 | (debugger-frame-number): Update to use the new text introduced by | ||
| 127 | the 1999-11-03 change. Skip one more frame in case of debug on entry. | ||
| 128 | |||
| 129 | 2005-02-28 Kim F. Storm <storm@cua.dk> | ||
| 130 | |||
| 131 | * double.el (double-translate-key): Call force-window-update after | ||
| 132 | read-event to avoid crash in redisplay. | ||
| 133 | |||
| 134 | 2005-02-28 Stefan Monnier <monnier@iro.umontreal.ca> | ||
| 135 | |||
| 136 | * emacs-lisp/debug.el (inhibit-debug-on-entry): New var. | ||
| 137 | (debug): Use it. Move the inhibit-trace earlier. | ||
| 138 | (debug-entry-code): New const. | ||
| 139 | (debug-on-entry-1): Use it. | ||
| 140 | |||
| 1 | 2005-02-28 Chong Yidong" <cyd@stupidchicken.com> (tiny change) | 141 | 2005-02-28 Chong Yidong" <cyd@stupidchicken.com> (tiny change) |
| 2 | 142 | ||
| 3 | * international/utf-16.el (ccl-encode-mule-utf-16le): Fix | 143 | * international/utf-16.el (ccl-encode-mule-utf-16le): |
| 4 | BUFFER_MAGNIFICATION to 2. | 144 | Fix BUFFER_MAGNIFICATION to 2. |
| 5 | (ccl-encode-mule-utf-16be): Likewise. | 145 | (ccl-encode-mule-utf-16be): Likewise. |
| 6 | 146 | ||
| 7 | 2005-02-28 Kenichi Handa <handa@m17n.org> | 147 | 2005-02-28 Kenichi Handa <handa@m17n.org> |