Mercurial > emacs
comparison lisp/ChangeLog @ 90118:e330fedc9152
Revision: miles@gnu.org--gnu-2005/emacs--unicode--0--patch-24
Merge from emacs--cvs-trunk--0
Patches applied:
* miles@gnu.org--gnu-2005/emacs--cvs-trunk--0 (patch 166-172)
- Update from CVS
- Tweak obsolete function/variable warning message
- Merge from gnus--rel--5.10
* miles@gnu.org--gnu-2005/gnus--rel--5.10 (patch 38)
- Update from CVS
author | Miles Bader <miles@gnu.org> |
---|---|
date | Thu, 10 Mar 2005 23:36:47 +0000 |
parents | 29e773288013 e886078cad44 |
children | 8395880305fe |
comparison
equal
deleted
inserted
replaced
90117:1913c17617fc | 90118:e330fedc9152 |
---|---|
1 2005-03-10 Stefan Monnier <monnier@iro.umontreal.ca> | |
2 | |
3 * help.el (describe-mode): Properly handle non-trivial lighters. | |
4 Don't ignore minor modes that are not listed in minor-mode-list. | |
5 | |
6 * tooltip.el (tooltip-mode): Don't complain that you can't turn the | |
7 feature ON when the user requests to turn it OFF. | |
8 | |
9 2005-03-10 Lute Kamstra <lute@gnu.org> | |
10 | |
11 * emacs-lisp/debug.el (debug-entry-code): Delete it. | |
12 (implement-debug-on-entry): New function to replace debug-entry-code. | |
13 (debug-on-entry-1): Use implement-debug-on-entry. Delete the | |
14 second argument as the 2005-03-07 change makes it obsolete. | |
15 (debug-on-entry, cancel-debug-on-entry): Update call to | |
16 debug-on-entry-1. | |
17 (debug, debugger-setup-buffer): Comment update. | |
18 (debugger-frame-number): Update to work with implement-debug-on-entry. | |
19 | |
20 2005-03-10 Jay Belanger <belanger@truman.edu> | |
21 | |
22 * calc/calc-embed.el (math-ms-args): Declare it. | |
23 (calc-embedded-eval-expr, calc-embedded-eval-get-var): Use variable | |
24 math-ms-args. | |
25 (calc-embedded-subst): Use math-multi-subst-rec to substitute | |
26 variables. | |
27 | |
28 2005-03-10 Nick Roberts <nickrob@snap.net.nz> | |
29 | |
30 * progmodes/gdb-ui.el (gdb-var-create-handler, gdb-get-location): | |
31 Use message-box. | |
32 | |
33 * tooltip.el (tooltip-mode): Use define-minor-mode and simplify. | |
34 (tooltip-activate-mouse-motions-if-enabled): Use dolist. | |
35 (tooltip-gud-tips): Simplify. | |
36 (tooltip-gud-tips-p): Remove superflouous :set. | |
37 (tooltip-gud-modes): Add fortran-mode. | |
38 (gdb-tooltip-print): Remove newline for tooltip-use-echo-area. | |
39 | |
40 * bindings.el (mode-line-mode-menu): Add tooltip-mode to mode-line. | |
41 | |
42 2005-03-09 Kim F. Storm <storm@cua.dk> | |
43 | |
44 * play/animate.el (animate-place-char): Use forward-line instead | |
45 of next-line to improve performance. | |
46 | |
47 2005-03-09 Simon Josefsson <jas@extundo.com> | |
48 | |
49 * net/browse-url.el (browse-url-default-browser): Doc fix. | |
50 | |
51 2005-03-09 Miles Bader <miles@gnu.org> | |
52 | |
53 * emacs-lisp/bytecomp.el (byte-compile-variable-ref) | |
54 (byte-compile-obsolete): Change " since VER" to " (as of Emacs VER)". | |
55 | |
56 2005-03-09 Kenichi Handa <handa@m17n.org> | |
57 | |
58 * international/latin-1.el: Set case and syntax for 255 only if | |
59 set-case-syntax-set-multibyte is nil. | |
60 | |
61 * textmodes/ispell.el (ispell-insert-word): New function. | |
62 (ispell-word): Use ispell-insert-word to insert a new word. | |
63 (ispell-process-line): Likewise. | |
64 (ispell-complete-word): Likewise. | |
65 | |
66 2005-03-09 Glenn Morris <gmorris@ast.cam.ac.uk> | |
67 | |
68 * calendar/calendar.el (redraw-calendar): Preserve point. | |
69 Reported by Matt Hodges <MPHodges@member.fsf.org>. | |
70 (calendar-week-start-day): Move after definition of | |
71 redraw-calendar. Delete buffer test, since redraw-calendar has | |
72 that now. | |
73 | |
74 * calendar/diary-lib.el (mark-diary-entries): Only call | |
75 redraw-calendar in the first of any recursive calls. | |
76 Reported by Alan Shutko <ats@acm.org>. | |
77 | |
1 2005-03-08 Juri Linkov <juri@jurta.org> | 78 2005-03-08 Juri Linkov <juri@jurta.org> |
2 | 79 |
3 * textmodes/sgml-mode.el (sgml-tag, html-tag-alist) | 80 * textmodes/sgml-mode.el (sgml-tag, html-tag-alist) |
4 (html-horizontal-rule, html-line, html-image, html-checkboxes) | 81 (html-horizontal-rule, html-line, html-image, html-checkboxes) |
5 (html-radio-buttons): Add a space before the trailing `/>' where | 82 (html-radio-buttons): Add a space before the trailing `/>' where |
247 | 324 |
248 * emacs-lisp/debug.el (debug-on-entry-1): Reimplement to make sure | 325 * emacs-lisp/debug.el (debug-on-entry-1): Reimplement to make sure |
249 that debug-entry-code can be safely removed from a function while | 326 that debug-entry-code can be safely removed from a function while |
250 this code is being evaluated. Revert the 2005-02-27 change as the | 327 this code is being evaluated. Revert the 2005-02-27 change as the |
251 new implementation no longer requires it. Make sure that a | 328 new implementation no longer requires it. Make sure that a |
252 function body containing just a string is not mistaken for a | 329 function body containing just a string is not mistaken for a docstring. |
253 docstring. | |
254 (debug): Skip one more frame in case of debug on entry. | 330 (debug): Skip one more frame in case of debug on entry. |
255 (debugger-setup-buffer): Delete one more frame line in case of | 331 (debugger-setup-buffer): Delete one more frame line in case of |
256 debug on entry. | 332 debug on entry. |
257 (debugger-frame-number): Update to use the new text introduced by | 333 (debugger-frame-number): Update to use the new text introduced by |
258 the 1999-11-03 change. Skip one more frame in case of debug on entry. | 334 the 1999-11-03 change. Skip one more frame in case of debug on entry. |