/[emacs]/emacs/lisp/ChangeLog
ViewVC logotype

Diff of /emacs/lisp/ChangeLog

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.3986.2.19 by miles, Wed Oct 15 06:54:48 2003 UTC revision 1.3986.2.20 by miles, Fri Nov 21 00:35:58 2003 UTC
# Line 1  Line 1 
1    2003-11-20  Kim F. Storm  <storm@cua.dk>
2    
3            * gdb-ui.el (gud-gdba-command-name): Find gdb command via PATH.
4            (breakpoint-xpm-data, breakpoint-enabled-pbm-data): Make smoother.
5            (breakpoint-enabled-icon, breakpoint-disabled-icon): Set :ascent
6            to 100 for icons to avoid increasing line height when shown.
7    
8    2003-11-19  Andreas Schwab  <schwab@suse.de>
9    
10            * simple.el (set-variable): Fix indentation.
11    
12    2003-11-17  Kenichi Handa  <handa@m17n.org>
13    
14            * international/latin1-disp.el (latin1-display-ucs-per-lynx): Fix
15            docstring.
16    
17    2003-11-17  Jesper Harder  <harder@ifa.au.dk>  (tiny change)
18    
19            * international/latin1-disp.el (latin1-display): Fix docstring.
20    
21    2003-11-16  John Wiegley  <johnw@newartisans.com>
22    
23            * eshell/em-ls.el (eshell-ls-file): There are times with
24            size-width is nil and uncomputed (when directories are created in
25            dired, for example); in this case, 4 is reasonable default value,
26            although it may caused skewed new entries (which could be avoided
27            by returning the original value of 8 in all cases, but 99% of the
28            time this is a waste of whitespace).
29    
30    2003-11-16  Martin Stjernholm  <bug-cc-mode@gnu.org>
31    
32            * cc-engine.el (c-guess-continued-construct,
33            c-guess-basic-syntax): Check a little more carefully if it's a
34            function declaration when an unknown construct followed by a block
35            is found inside a statement context.  This avoids macros followed
36            by blocks to be taken as function declarations.
37    
38            (c-guess-continued-construct): Changed the analysis of a statement
39            continuation with a brace open to `substatement-block', for
40            consistency with recognized statements.
41    
42            (c-add-stmt-syntax): Don't continue to the surrounding sexp if the
43            start is in a position so that `c-beginning-of-statement-1' jumped
44            to the beginning of the same statement.
45    
46            * cc-fonts.el, cc-engine.el (c-forward-<>-arglist-recur): Don't
47            accept binary operators in the arglist if we're in a function call
48            context, i.e. if `c-restricted-<>-arglists' is set.  That avoids
49            template recognition in cases like "if (a < b || c > d)".
50    
51            (c-restricted-<>-arglists): New more appropriate name for
52            `c-disallow-comma-in-<>-arglists'.
53    
54            Accessing functions updated for the variable name change.
55    
56            * cc-engine.el (c-syntactic-re-search-forward): Fix bug where the
57            match data could get clobbered if NOT-INSIDE-TOKEN is used.
58    
59            * cc-engine.el (c-beginning-of-statement-1): Don't allow parens in
60            labels.
61    
62            (c-backward-to-decl-anchor): Use `c-beginning-of-statement-1'
63            instead of duplicating parts of it.  This fixes bogus label
64            recognition.
65    
66            * cc-align.el (c-gnu-impose-minimum): Reverted to the old method
67            of checking the context in which to apply the minimum indentation,
68            so that it isn't enforced in e.g. namespace blocks.
69    
70            * cc-vars.el (c-inside-block-syms): New constant used by
71            `c-gnu-impose-minimum'.  It's defined close to `c-offsets-alist'
72            to somewhat reduce the risk of becoming stale.
73    
74            * cc-cmds.el, cc-engine.el (c-shift-line-indentation): Moved from
75            cc-cmds to cc-engine to allow use from cc-align.
76    
77            * cc-engine.el (c-beginning-of-inheritance-list): Cope with fully
78            qualified identifiers containing "::".
79    
80            * cc-defs.el (c-make-keywords-re): Added kludge for bug in
81            `regexp-opt' in Emacs 20 and XEmacs when strings contain newlines.
82    
83            * cc-vars.el (c-emacs-features): Use a space in front of the name
84            of the temporary buffer.  That also avoids dumping problems in
85            XEmacs due to undo info being left around after the buffer is
86            killed.
87    
88            * cc-engine.el (c-in-knr-argdecl): Look closer at the function
89            arglist to see if it's a K&R style declaration.
90    
91            (c-guess-basic-syntax): CASE 5B.2: Check with `c-in-knr-argdecl'
92            before returning `knr-argdecl-intro'.
93    
94    2003-11-16  John Wiegley  <johnw@newartisans.com>
95    
96            * eshell/em-ls.el (eshell-ls-file): Instead of making the size
97            field in a long-listing always 8 characters, use `size-width',
98            which has already been computed.
99    
100    2003-11-15  Thien-Thi Nguyen  <ttn@gnu.org>
101    
102            * subr.el (minor-mode-list): Add `hs-minor-mode'.
103    
104    2003-11-14  Thien-Thi Nguyen  <ttn@gnu.org>
105    
106            * diff-mode.el (diff-hunk-prev, diff-hunk-next): Support
107            operation while narrowed, with `diff-restrict-view'.
108    
109    2003-11-14  Thien-Thi Nguyen  <ttn@gnu.org>
110    
111            * emacs-lisp/easy-mmode.el (easy-mmode-define-navigation): Take
112            additional optional arg NARROWFUN.  For the generated functions: Add
113            local var `was-narrowed-p'.  Also, if NARROWFUN is specified, include
114            frags that arrange to check for and save narrowing state before the
115            move and then conditionally call NARROWFUN after the move.
116    
117    2003-11-14  John Wiegley  <johnw@newartisans.com>
118    
119            * eshell/esh-var.el (eshell-parse-variable-ref): Added a backslash
120            that was optional, but obviously missing based on surrounding
121            code.
122    
123            * eshell/esh-cmd.el (eshell-lisp-command): Do not late-convert
124            string arguments to numbers unless the whole argument was seen as
125            a number.
126    
127    2003-11-14  Kenichi Handa  <handa@m17n.org>
128    
129            * international/mule.el (ctext-non-standard-encodings-alist): Fix
130            coding systems.
131    
132    2003-11-10  Kenichi Handa  <handa@m17n.org>
133    
134            * language/kannada.el ("Kannada"): Add sample-text.
135    
136            * language/knd-util.el (kannada-compose-region)
137            (kannada-compose-string, kannada-post-read-conversion): Add
138            autoload cookie.
139    
140            * international/quail.el (quail-completion): Change the message
141            "corresponding translations" to "corresponding characters".
142    
143    2003-11-09  Markus Rost  <rost@mathematik.uni-bielefeld.de>
144    
145            * descr-text.el (describe-char): Fix typo.
146    
147    2003-11-08  Kailash C. Chowksey <klchxbec@m-net.arbornet.org>
148    
149            These changes are to support Kannada language/script.
150    
151            * Makefile.in (DONTCOMPILE): Add kannada.el.
152    
153            * makefile.w32-in (DONTCOMPILE): Add kannada.el.
154    
155            * loadup.el: Preload kannada.el.
156    
157            * language/ind-util.el (ucs-kannada-to-is13194-alist)
158            (is13194-to-ucs-kannada-hashtbl, is13194-to-ucs-kannada-regexp):
159            New variables.
160    
161            * language/kannada.el: New file.
162    
163            * language/knd-util.el: New file.
164    
165    2003-11-07  Andreas Schwab  <schwab@suse.de>
166    
167            * progmodes/autoconf.el (autoconf-font-lock-keywords): Also
168            highlight AH_*.
169    
170            * xml.el (xml-parse-dtd): Fix misplaced paren.
171    
172    2003-11-07  Kenichi Handa  <handa@m17n.org>
173    
174            * language/european.el (windows-1252): Fix table (0x8F and 0x9E).
175    
176    2003-11-05  Juri Linkov  <juri@jurta.org>
177    
178            * desktop.el (desktop-locals-to-save): Add buffer-file-coding-system.
179            (desktop-buffer-file): Use saved buffer-file-coding-system
180            for file reading.  Set auto-insert to nil to prevent automatic
181            insertion into restored empty files.
182    
183    2003-11-04  Luc Teirlinck  <teirllm@auburn.edu>
184    
185            * files.el (risky-local-variable-p): Make second argument optional.
186    
187    2003-11-03  Eli Zaretskii  <eliz@elta.co.il>
188    
189            * mail/rmail.el (rmail-convert-to-babyl-format): If
190            base64-decode-region signals an error, catch it and silently
191            ignore it.
192    
193    2003-11-01  Mark A. Hershberger  <mah@everybody.org>
194    
195            * xml.el: Allow comments following the top-level element.
196            Separate out namespace parsing into special functions.
197            Change namespace parsing to return ('ns-uri . "local-name")
198            instead of '{ns-uri}local-name.
199    
200    2003-11-01  era@iki.fi  <era@iki.fi>  (tiny change)
201    
202            * dired.el (dired-ls-sorting-switches): Doc fix.
203    
204    2003-11-01  Oliver Scholz  <epameinondas@gmx.de>
205    
206            * emacs-lisp/rx.el (rx-or): Fix the case of
207            "(rx (and ?a (or ?b ?c) ?d))".
208    
209    2003-11-01  Christoph Wedler  <wedler@users.sourceforge.net>  (tiny change)
210    
211            * textmodes/texinfmt.el (texinfo-pre-format-hook): New variable.
212            (texinfo-format-region): Use it.
213            (texinfo-format-buffer-1): Ditto.
214    
215    2003-11-01  Alan Mackenzie  <acm@muc.de>
216    
217            Changes to allow scrolling whilst in isearch mode:
218            * isearch.el (isearch-unread-key-sequence): New function,
219            extracted from isearch-other-meta-char.
220            (top level): (put 'foo 'isearch-scroll) on all Emacs's
221            "scrollable" standard functions.
222            (isearch-allow-scroll): New customizable variable.
223            (isearch-string-out-of-window, isearch-back-into-window)
224            (isearch-reread-key-sequence-naturally)
225            (isearch-lookup-scroll-key): New functions.
226            (isearch-other-meta-char): Doc string and functionality enhanced.
227            Now accepts a prefix argument.
228            (isearch-lazy-highlight-window-end): New variable.
229            (isearch-lazy-highlight-new-loop): Pay attention to the window's
230            end (thru isearch-lazy-highlight-window-end), not only its start.
231    
232            * simple.el (overriding-map-is-bound, saved-overriding-map): New
233            variables.
234            (ensure-overriding-map-is-bound, restore-overriding-map): New
235            functions.
236            (universal-argument, universal-argument-more, negative-argument)
237            (digit-argument, universal-argument-other-key): Minor changes.
238    
239    2003-11-01  Alexander Pohoyda  <alexander.pohoyda@gmx.net>  (tiny change)
240    
241            * mail/rmailsum.el (rmail-summary-goto-msg): Don't call itself
242            recursively if the last message is deleted, thus avoiding an
243            infinite loop.
244    
245    2003-10-30  Stefan Monnier  <monnier@iro.umontreal.ca>
246    
247            * textmodes/tex-mode.el (tex-compile-commands): Add `yap' and `ps2pdf'.
248            (tex-main-file): Don't add .tex if the extension is already present.
249            (tex-uptodate-p): Don't recurse indefinitely with symlinks.
250    
251    2003-10-29  Lute Kamstra  <lute@gnu.org>
252    
253            * progmodes/octave-inf.el (inferior-octave-prompt):
254            Recognize version number in prompt.
255    
256    2003-10-28  Dave Love  <fx@gnu.org>
257    
258            * international/characters.el: Fix some Unicode ranges.
259    
260    2003-10-28  Kenichi Handa  <handa@m17n.org>
261    
262            * disp-table.el (standard-display-8bit)
263            (standard-display-default, standard-display-ascii)
264            (standard-display-g1, standard-display-graphic)
265            (standard-display-underline): Assure that standard-display-table
266            is a display table.
267    
268    2003-10-27  Stefan Monnier  <monnier@iro.umontreal.ca>
269    
270            * simple.el (reindent-then-newline-and-indent): Delete space *after*
271            reindenting the first line.
272    
273    2003-10-25  Per Abrahamsen  <abraham@dina.kvl.dk>
274    
275            * wid-edit.el (widget-default-delete): Always delete child widgets.
276    
277    2003-10-24  Stefan Monnier  <monnier@iro.umontreal.ca>
278    
279            * newcomment.el (comment-indent): Don't call indent-according-to-mode
280            if the line has code.
281            Don't try to line up with something that's too far left.
282    
283            * progmodes/octave-mod.el (octave-comment-start): Simplify.
284            (octave-mode-syntax-table): Add % as a comment starter.
285            (octave-point): Remove.
286            (octave-in-comment-p, octave-in-string-p)
287            (octave-not-in-string-or-comment-p, calculate-octave-indent)
288            (octave-blink-matching-block-open, octave-auto-fill):
289            Use line-(beginning|end)-position instead.
290    
291    2003-10-23  Francesco Potort,Al(B  <pot@gnu.org>
292    
293            * emacs-lisp/authors.el (authors-aliases): Add correct realname
294            for Francesco Potort,Al(B.
295    
296    2003-10-23  Dave Love  <fx@gnu.org>
297    
298            * international/mule-cmds.el (locale-charset-to-coding-system):
299            Don't rely on nil being a coding system.
300    
301            * mail/mail-extr.el (mail-extr-ignore-single-names): Add :version.
302            (mail-extr-address-syntax-table): Remove non-ASCII unibyte chars.
303            (mail-extr-voodoo): Use char classes in regexps (for non-ASCII).
304    
305    2003-10-21  Nick Roberts  <nick@nick.uklinux.net>
306    
307            * gdb-ui.el (gdb-current-language): New variable.
308            (gdb-update-flag): Remove variable.
309            (gud-watch, gdb-frame-handler): Adapt for other languages (Fortran).
310            (gdb-take-last-elt): Remove function.
311            (gdb-dequeue-input): Avoid recursion by not using gdb-take-last-elt.
312            (gdb-post-prompt): Check for variable object changes here.
313    
314            * progmodes/gud.el (gud-speedbar-buttons): Check for variable
315            object changes in gdb-ui.el.
316    
317    2003-10-21  Richard M. Stallman  <rms@gnu.org>
318    
319            * emacs-lisp/edebug.el (edebug-display-freq-count): Doc fix.
320    
321            * ls-lisp.el (ls-lisp-insert-directory): Arg is now wildcard-regexp.
322            Don't check for foo*/ wildcard form here.
323            (insert-directory): Recognize foo*/ as a wildcard.
324            Separate wildcard-regexp variable from the arg, wildcard.
325    
326            * subr.el (add-hook): Correctly detect when make-local-hook was used.
327            (remove-hook): Correctly handle strange cases about local hooks.
328    
329    2003-10-21  David Ponce  <david@dponce.com>
330    
331            * ruler-mode.el (ruler-mode-left-fringe-cols): Add new optional
332            argument REAL, to return a real number instead of a rounded
333            integer value.  Define as inline function.
334            (ruler-mode-right-fringe-cols): Likewise.
335            (ruler-mode-scroll-bar-cols): New function.
336            (ruler-mode-left-scroll-bar-cols): Use it.  Define as macro.
337            (ruler-mode-right-scroll-bar-cols): Likewise.
338            (ruler-mode-space): New function.
339            (ruler-mode-ruler): Use it.  Handle variations of fringe style,
340            scroll bar mode and margins in a more robust way.
341    
342    2003-10-21  Christoph Wedler  <Christoph.Wedler@sap.com>
343    
344            * progmodes/antlr-mode.el: Make major mode work with cc-mode-5.30+.
345            (antlr-c-init-language-vars): New function.
346            (antlr-mode): Use it with cc-mode before v5.29.
347            (antlr-c-common-init): Don't set some local vars here.
348            (antlr-mode): Set them here.
349            (antlr-c-forward-sws): New function alias.
350            (antlr-mode): Redefine with cc-mode before v5.30.
351            (antlr-skip-sexps): Use it.
352            (antlr-skip-exception-part): Ditto.
353            (antlr-skip-file-prelude): Ditto.
354            (antlr-outside-rule-p): Ditto.
355            (antlr-end-of-body): Ditto.
356            (antlr-option-kind): Ditto.
357            (antlr-insert-option-area): Ditto.
358            (antlr-file-dependencies): Ditto.
359    
360    2003-10-21  Roland Winkler  <Roland.Winkler@physik.uni-erlangen.de>
361    
362            * textmodes/bibtex.el (bibtex-move-outside-of-entry):
363            Move backward only if point was not inside an entry.
364    
365    2003-10-21  Richard M. Stallman  <rms@gnu.org>
366    
367            * progmodes/compile.el (compile-auto-highlight): Undo July 7 change.
368    
369    2003-10-21  Juri Linkov  <juri@jurta.org>
370    
371            * compare-w.el: Automatically skip non-matching text to resync.
372            (compare-windows-whitespace): Doc fix.
373            (compare-windows-sync, compare-windows-sync-string-size)
374            (compare-windows-recenter, compare-ignore-whitespace)
375            (compare-windows-highlight, compare-windows-face): New variables.
376            (compare-windows): Use compare-windows-sync.
377            (compare-windows-highlight, compare-windows-dehighlight)
378            (compare-windows-sync-regexp)
379            (compare-windows-sync-default-function): New functions.
380    
381    2003-10-21  Juri Linkov  <juri@jurta.org>
382    
383            * diff.el (diff-parse-differences): Don't visit the files now;
384            instead, just record the error locus.
385    
386    2003-10-21  Dave Love  <fx@gnu.org>
387    
388            * progmodes/cfengine.el: New file.
389    
390    2003-10-20  Stefan Monnier  <monnier@iro.umontreal.ca>
391    
392            * complete.el (PC-do-completion): Do not forget to use `pred' as the
393            default-directory when completing file names.
394    
395    2003-10-20  Luc Teirlinck  <teirllm@auburn.edu>
396    
397            * help-mode.el (help-make-xrefs): Make sure that if a symbol is
398            followed by the word `face', it gets treated as a face, even if
399            it is also defined as a variable or a function.
400    
401    2003-10-20  Dave Love  <fx@gnu.org>
402    
403            * emacs-lisp/easy-mmode.el (easy-mmode-define-navigation):
404            Avoid incf in macro expansion.
405    
406    2003-10-20  John Paul Wallington  <jpw@gnu.org>
407    
408            * emacs-lisp/elint.el (elint-check-defcustom-form): Don't use
409            `evenp' so we don't implicitly require cl library at runtime.
410    
411    2003-10-18  Luc Teirlinck  <teirllm@auburn.edu>
412    
413            * help-mode.el (help-xref-symbol-regexp): Treat newlines as whitespace.
414            (help-make-xrefs): Only make cross-references for faces if
415            preceded or followed by the word `face'.  Do not make a
416            cross-reference for variables without variable documentation,
417            unless preceded by the word `variable' or `option'.  Update doc
418            string accordingly.
419    
420    2003-10-18  Thien-Thi Nguyen  <ttn@gnu.org>
421    
422            * progmodes/hideshow.el: Rewrite one-armed `if'
423            constructs using either `when' or `unless'.
424            (hs-grok-mode-type): Elide superfluous `progn'; nfc.
425    
426    2003-10-16  Nick Roberts  <nick@nick.uklinux.net>
427    
428            * gdb-ui.el (breakpoint-xpm-data, breakpoint-enabled-pbm-data)
429            (breakpoint-disabled-pbm-data): Make breakpoint icons 10x10
430            instead of 12x12.
431    
432    2003-10-16  Eli Zaretskii  <eliz@elta.co.il>
433    
434            * mail/rmail.el (rmail-convert-to-babyl-format): Display a
435            message while converting to Babyl.
436    
437    2003-10-16  Vadim Nasardinov  <vadimn@redhat.com>  (tiny change)
438    
439            * allout.el (allout-mode): Doc fix.
440    
441    2003-10-16  Lute Kamstra  <lute@gnu.org>
442    
443            * subr.el (force-mode-line-update): Fix docstring.
444    
445    2003-10-14  Dave Love  <fx@gnu.org>
446    
447            * international/mule-cmds.el (find-multibyte-characters): Doc fix.
448            (default-input-method): Add :link, improve :type.
449            (locale-charset-language-names): Fix utf-8 pattern.
450            (locale-charset-match-p, locale-charset-alist)
451            (locale-charset-to-coding-system): New.
452            (set-locale-environment): Deal with codeset part of locale specs.
453    
454  2003-10-14  Lute Kamstra  <lute@gnu.org>  2003-10-14  Lute Kamstra  <lute@gnu.org>
455    
456          * fringe.el (fringe-mode): Use active voice in docstring.          * fringe.el (fringe-mode): Use active voice in docstring.
# Line 9  Line 462 
462          (set-fringe-style): Ditto.          (set-fringe-style): Ditto.
463    
464  2003-10-12  Michael Kifer  <kifer@cs.stonybrook.edu>  2003-10-12  Michael Kifer  <kifer@cs.stonybrook.edu>
465            
466          * ediff-mult.el (ediff-filegroup-action): use          * ediff-mult.el (ediff-filegroup-action):
467          ediff-default-filtering-regexp.          Use ediff-default-filtering-regexp.
468            
469          * ediff-util.el (ediff-recenter): don't call          * ediff-util.el (ediff-recenter): Don't call
470          ediff-restore-highlighting twice.          ediff-restore-highlighting twice.
471          (ediff-select-difference): set current difference.          (ediff-select-difference): Set current difference.
472          (ediff-unselect-and-select-difference): added comment.          (ediff-unselect-and-select-difference): Add comment.
473            
474          * ediff.el (ediff-directories,ediff-directory-revisions,          * ediff.el (ediff-directories,ediff-directory-revisions)
475          ediff-directories3,ediff-merge-directories,          (ediff-directories3,ediff-merge-directories)
476          ediff-merge-directories-with-ancestor,ediff-merge-directory-revisions,          (ediff-merge-directories-with-ancestor)
477          ediff-merge-directory-revisions-with-ancestor): use          (ediff-merge-directory-revisions)
478          ediff-default-filtering-regexp.          (ediff-merge-directory-revisions-with-ancestor):
479                    Use ediff-default-filtering-regexp.
480    
481  2003-10-12  Andreas Schwab  <schwab@suse.de>  2003-10-12  Andreas Schwab  <schwab@suse.de>
482    
483          * international/mule-cmds.el (locale-charset-language-names):          * international/mule-cmds.el (locale-charset-language-names):
# Line 72  Line 526 
526          * info.el (Info-following-node-name): New function.          * info.el (Info-following-node-name): New function.
527    
528          * loadhist.el (unload-feature-special-hooks):          * loadhist.el (unload-feature-special-hooks):
529          Renamed from loadhist-hook-functions.          Rename from loadhist-hook-functions.
530          (loadhist-hook-functions): Now an alias.          (loadhist-hook-functions): Now an alias.
531    
532  2003-10-04  Eli Zaretskii  <eliz@elta.co.il>  2003-10-04  Eli Zaretskii  <eliz@elta.co.il>
# Line 80  Line 534 
534          * ldefs-boot.el: Renamed from loaddefs-boot.el, to prevent          * ldefs-boot.el: Renamed from loaddefs-boot.el, to prevent
535          file-name clashes on 8+3 filesystems.          file-name clashes on 8+3 filesystems.
536    
537          * Makefile.in (DONTCOMPILE, bootstrap-clean): Rename          * Makefile.in (DONTCOMPILE, bootstrap-clean):
538          loaddefs-boot.el to ldefs-boot.el          Rename loaddefs-boot.el to ldefs-boot.el
539    
540          * makefile.w32-in (DONTCOMPILE, bootstrap-clean-CMD)          * makefile.w32-in (DONTCOMPILE, bootstrap-clean-CMD)
541          (bootstrap-clean-SH): Rename loaddefs-boot.el to ldefs-boot.el          (bootstrap-clean-SH): Rename loaddefs-boot.el to ldefs-boot.el
# Line 104  Line 558 
558    
559  2003-10-02  Kenichi Handa  <handa@m17n.org>  2003-10-02  Kenichi Handa  <handa@m17n.org>
560    
561          * international/utf-8.el (ccl-decode-mule-utf-8): Lookup          * international/utf-8.el (ccl-decode-mule-utf-8):
562          utf-subst-table-for-decode even for U+E000..U+FFFF.          Lookup utf-subst-table-for-decode even for U+E000..U+FFFF.
563    
564          * international/subst-jis.el: Include U+FF00..U+FFEF in decode          * international/subst-jis.el: Include U+FF00..U+FFEF in decode table.
         table.  
565          * international/subst-big5.el: Likewise.          * international/subst-big5.el: Likewise.
566          * international/subst-gb2312.el: Likewise          * international/subst-gb2312.el: Likewise.
567          * international/subst-ksc.el: Likewise.          * international/subst-ksc.el: Likewise.
568    
569  2003-10-01  Glenn Morris  <gmorris@ast.cam.ac.uk>  2003-10-01  Glenn Morris  <gmorris@ast.cam.ac.uk>
# Line 119  Line 572 
572          (calendar-leap-year-p, calendar-absolute-from-gregorian)          (calendar-leap-year-p, calendar-absolute-from-gregorian)
573          (generate-calendar, calendar-read-date, calendar-interval)          (generate-calendar, calendar-read-date, calendar-interval)
574          (calendar-day-of-week): Handle years BC.          (calendar-day-of-week): Handle years BC.
575          (generate-calendar-month, calendar-gregorian-from-absolute): Doc          (generate-calendar-month, calendar-gregorian-from-absolute): Doc fix.
         fix.  
576    
577  2003-10-01  Dave Love  <fx@gnu.org>  2003-10-01  Dave Love  <fx@gnu.org>
578    
# Line 144  Line 596 
596    
597          * toolbar/gud-display.xpm, toolbar/gud-display.pbm: Remove.          * toolbar/gud-display.xpm, toolbar/gud-display.pbm: Remove.
598    
599          * progmodes/gud.el (gud-menu-map, gud-tool-bar-map): Replace          * progmodes/gud.el (gud-menu-map, gud-tool-bar-map):
600          gud-display with gud-watch.          Replace gud-display with gud-watch.
601          (gud-speedbar-buttons): Add stuff for watching expressions          (gud-speedbar-buttons): Add stuff for watching expressions
602          in the speedbar when using M-x gdba. Use dolist on old part          in the speedbar when using M-x gdba. Use dolist on old part
603          of this function.          of this function.
# Line 158  Line 610 
610          (gdb-var-list-children, gdb-var-list-children-handler)          (gdb-var-list-children, gdb-var-list-children-handler)
611          (gdb-var-create-regexp, gdb-var-update-regexp)          (gdb-var-create-regexp, gdb-var-update-regexp)
612          (gdb-var-list-children-regexp): New constants.          (gdb-var-list-children-regexp): New constants.
613          (gud-gdba-command-name): Don't specify -noasync so that GDB/MI          (gud-gdba-command-name): Don't specify -noasync so that GDB/MI works.
614          works.          (gdb-annotation-rules): Reduce annotation set (level 3).
         (gdb-annotation-rules): Reduced annotation set (level 3).  
615          (gdb-pre-prompt, gdb-prompt): Call handler in gdb-prompt.          (gdb-pre-prompt, gdb-prompt): Call handler in gdb-prompt.
616          (gdb-post-prompt): Don't update GDB buffers every time speedbar          (gdb-post-prompt): Don't update GDB buffers every time speedbar
617          updates.          updates.
# Line 226  Line 677 
677    
678          * desktop.el: A lot of comments updated.          * desktop.el: A lot of comments updated.
679          (desktop-save-mode): Minor mode introduced.          (desktop-save-mode): Minor mode introduced.
680          (desktop-enable, desktop-clear-preserve-buffers): Variables made          (desktop-enable, desktop-clear-preserve-buffers): Make vars obsolete.
         obsolete.  
681          (desktop-load-default): Function made obsolete.          (desktop-load-default): Function made obsolete.
682          (desktop-locals-to-save): Variable made customizable.          (desktop-locals-to-save): Variable made customizable.
683          (desktop-read): Optional parameter `dirname' added.          (desktop-read): Optional parameter `dirname' added.
684          (desktop-change-dir, desktop-revert): Parameter `dirname' in          (desktop-change-dir, desktop-revert): Parameter `dirname' in
685          `desktop-read' used.          `desktop-read' used.
686          (desktop-save-in-load-dir): Renamed to `desktop-save-in-desktop-dir'.          (desktop-save-in-load-dir): Rename to `desktop-save-in-desktop-dir'.
687    
688  2003-09-29  Rajesh Vaidheeswarran  <rv@gnu.org>  2003-09-29  Rajesh Vaidheeswarran  <rv@gnu.org>
689    
# Line 268  Line 718 
718          (describe-char): Pay attention to display table on describing how          (describe-char): Pay attention to display table on describing how
719          a character is displayed.          a character is displayed.
720    
721          * international/mule-cmds.el (encoded-string-description): Prepend          * international/mule-cmds.el (encoded-string-description):
722          "0x" to each encoded byte.          Prepend "0x" to each encoded byte.
723    
724  2003-09-28  Andreas Schwab  <schwab@suse.de>  2003-09-28  Andreas Schwab  <schwab@suse.de>
725    
# Line 298  Line 748 
748    
749  2003-09-28  David Ponce  <david@dponce.com>  2003-09-28  David Ponce  <david@dponce.com>
750    
751          * recentf.el (recentf-initialize-file-name-history): New          * recentf.el (recentf-initialize-file-name-history): New defcustom.
         defcustom.  
752          (recentf-load-list): When `recentf-initialize-file-name-history'          (recentf-load-list): When `recentf-initialize-file-name-history'
753          is non-nil, initialize an empty `file-name-history' with the          is non-nil, initialize an empty `file-name-history' with the
754          recent list.          recent list.
# Line 383  Line 832 
832  2003-09-24  Rajesh Vaidheeswarran  <rv@gnu.org>  2003-09-24  Rajesh Vaidheeswarran  <rv@gnu.org>
833    
834          * ffap.el (ffap-shell-prompt-regexp): Add regexp to identify          * ffap.el (ffap-shell-prompt-regexp): Add regexp to identify
835          common shell prompts that are not common filename or URL          common shell prompts that are not common filename or URL characters.
         characters.  
836          (ffap-file-at-point): Use the new regexp to strip the prompts from          (ffap-file-at-point): Use the new regexp to strip the prompts from
837          the file names. This is an issue mostly for user prompts that          the file names. This is an issue mostly for user prompts that
838          don't have a trailing space and find-file-at-point is invoked from          don't have a trailing space and find-file-at-point is invoked from
# Line 1100  Line 1548 
1548    
1549  2003-08-11  Carsten Dominik  <dominik@sand.science.uva.nl>  2003-08-11  Carsten Dominik  <dominik@sand.science.uva.nl>
1550    
1551          * textmodes/reftex.el: Updated to version 4.21          * reftex-toc.el (reftex-toc-rename-label): New function.
1552          * reftex-auc.el: likewise.          (reftex-toc-check-docstruct): New function.
1553          * reftex-cite.el: likewise.  
1554          * reftex-dcr.el: likewise.          * reftex.el (reftex-region-active-p): New function.
1555          * reftex-global.el: likewise.  
1556          * reftex-index.el: likewise.          * reftex-parse.el (reftex-locate-bibliography-files): Improved the
1557          * reftex-parse.el: likewise.          regexp to find the \bibliography macro.
1558          * reftex-ref.el: likewise.  
1559          * reftex-sel.el: likewise.          * reftex-vars.el (reftex-section-levels): Removed subsubparagraph,
1560          * reftex-toc.el: likewise.          which does not exist in LaTeX.
1561          * reftex-vars.el: likewise.          (reftex-cite-format-builtin): Added amsrefs support.
1562            (reftex-toc-confirm-promotion): New option
1563            
1564            * reftex-toc.el
1565            (reftex-toc): Use `reftex-toc-split-windows-fraction'.
1566            (reftex-toc-demote, reftex-toc-promote)
1567            (reftex-toc-do-promote, reftex-toc-promote-prepare)
1568            (reftex-toc-promote-action, reftex-toc-extract-section-number)
1569            (reftex-toc-newhead-from-alist)
1570            (reftex-toc-load-all-files-for-promotion): New functions.
1571            (reftex-toc-help): Added description of new keys.
1572            (reftex-toc-split-windows-fraction): New option.
1573            (reftex-recenter-toc-when-idle): Search *toc* window on all
1574            visible frames.
1575            (reftex-toc): Additional parameter REUSE
1576            (reftex-toc-recenter): Remember current frame.  Call `reftex-toc'
1577            with REUSE argument.
1578            (reftex-recenter-toc-when-idle): Reset `current-prefix-arg' for
1579            the call of `reftex-toc'.
1580            (reftex-make-separate-toc-frame): New function .
1581            (reftex-toc-recenter): When called with triple prefix arg, call
1582            `reftex-make-separate-toc-frame' first.
1583            (reftex-toc-toggle-dedicated-frame): New command.
1584            (reftex-toc-quit): Adapted to delete frame when called in
1585            dedicated frame.
1586    
1587            * reftex-index.el (reftex-index-phrase-match-is-indexed): Check
1588            all enclosing macros.
1589    
1590    
1591  2003-08-08  Vinicius Jose Latorre  <viniciusjl@ig.com.br>  2003-08-08  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
1592    

Legend:
Removed from v.1.3986.2.19  
changed lines
  Added in v.1.3986.2.20

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26