comparison lisp/ChangeLog @ 83199:0e38a1bd20a8

Merged in changes from CVS trunk. Patches applied: * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-509 Update from CVS * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-510 Update from CVS * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-511 Update from CVS * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-512 Update from CVS * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-513 Update from CVS * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-514 Update from CVS * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-515 Update from CVS * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-516 Update from CVS * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-517 Update from CVS * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-518 Update from CVS git-archimport-id: lorentey@elte.hu--2004/emacs--multi-tty--0--patch-239
author Karoly Lorentey <lorentey@elte.hu>
date Tue, 31 Aug 2004 16:31:03 +0000
parents 22658e29bd48 91f561e48ef0
children cc29203a9a04
comparison
equal deleted inserted replaced
83198:d58083e7ec81 83199:0e38a1bd20a8
1 2004-08-30 John Paul Wallington <jpw@gnu.org>
2
3 * textmodes/tex-mode.el (tex-validate-buffer): Use distinct
4 strings rather than programatically constructing message.
5
6 2004-08-30 Richard M. Stallman <rms@gnu.org>
7
8 * emacs-lisp/lisp-mode.el (prin1-char): Don't turn S-a into A.
9 Don't return a string that would read as the wrong character code.
10
11 2004-08-29 Kim F. Storm <storm@cua.dk>
12
13 * emulation/cua-base.el (cua-auto-expand-rectangles): Remove
14 automatic rectangle padding feature; replace by non-destructive
15 virtual rectangle edges feature.
16 (cua-virtual-rectangle-edges): New defcustom.
17 (cua-auto-tabify-rectangles): New defcustom.
18 (cua-paste): If paste into a marked rectangle, insert rectangle at
19 current column, even if virtual; also paste exactly as many lines
20 as has been marked (ignore additional lines or add empty lines),
21 but paste whole source if only one line is marked.
22 (cua--update-indications): No longer use overwrite-cursor to
23 indicate rectangle padding
24
25 * emulation/cua-rect.el (cua--rectangle-padding): Remove.
26 (cua--rectangle-virtual-edges): New defun.
27 (cua--rectangle-get-corners): Remove optional PAD arg.
28 (cua--rectangle-set-corners): Never do padding.
29 (cua--forward-line): Remove optional PAD arg. Simplify.
30 (cua-resize-rectangle-right, cua-resize-rectangle-left)
31 (cua-resize-rectangle-down, cua-resize-rectangle-up):
32 (cua-resize-rectangle-bot, cua-resize-rectangle-top)
33 (cua-resize-rectangle-page-up, cua-resize-rectangle-page-down)
34 (cua--rectangle-move): Never do padding. Simplify.
35 (cua--tabify-start): New defun.
36 (cua--rectangle-operation): Add tabify arg. All callers changed.
37 (cua--pad-rectangle): Remove.
38 (cua--delete-rectangle): Handle delete with virtual edges.
39 (cua--extract-rectangle): Add spaces if rectangle has virtual edges.
40 (cua--insert-rectangle): Handle insert at virtual column.
41 Perform auto-tabify if necessary.
42 (cua--activate-rectangle): Remove optional FORCE arg.
43 Never do padding. Simplify.
44 (cua--highlight-rectangle): Enhance for virtual edges.
45 (cua-toggle-rectangle-padding): Remove command.
46 (cua-toggle-rectangle-virtual-edges): New command.
47 (cua-sequence-rectangle): Add optional TABIFY arg. Callers changed.
48 (cua--rectangle-post-command): Don't force rectangle padding.
49 (cua--init-rectangles): Bind M-p to cua-toggle-rectangle-virtual-edges.
50
51 2004-08-28 Luc Teirlinck <teirllm@auburn.edu>
52
53 * indent.el (edit-tab-stops-buffer): Doc fix.
54
55 2004-08-28 Richard M. Stallman <rms@gnu.org>
56
57 * progmodes/grep.el (grep-default-command): Use find-tag-default.
58 (grep-tag-default): Function deleted.
59
60 * subr.el (find-tag-default): Moved from etags.el.
61
62 * progmodes/etags.el (find-tag-default): Moved to subr.el.
63
64 * emacs-lisp/lisp-mode.el (prin1-char): Put `shift' modifier
65 into the basic character if it has an uppercase form.
66
67 2004-08-27 Kenichi Handa <handa@m17n.org>
68
69 * international/utf-8.el (utf-8-post-read-conversion): If the
70 buffer is unibyte, temporarily make it multibyte.
71
72 2004-08-27 Masatake YAMATO <jet@gyve.org>
73
74 * calendar/time-date.el (time-to-seconds): Add autoload cookies.
75
76 2004-08-25 John Paul Wallington <jpw@gnu.org>
77
78 * textmodes/tex-mode.el (tex-validate-buffer): Distinguish between
79 0, 1, and many mismatches in message.
80 (tex-start-shell): Use `set-process-query-on-exit-flag'.
81
82 * ielm.el (ielm-tab, ielm-complete-symbol): Doc fix.
83 (inferior-emacs-lisp-mode): Use `set-process-query-on-exit-flag'.
84
85 2004-08-23 Stefan Monnier <monnier@iro.umontreal.ca>
86
87 * vc-svn.el (vc-svn-diff): Treat options from vc-svn-diff-switches and
88 vc-diff-switches differently.
89
1 2004-08-22 Luc Teirlinck <teirllm@auburn.edu> 90 2004-08-22 Luc Teirlinck <teirllm@auburn.edu>
2 91
3 * speedbar.el (speedbar-file-regexp): Give it a phony defvar 92 * speedbar.el (speedbar-file-regexp): Give it a phony defvar
4 before and a real defvar after 93 before and a real defvar after
5 `speedbar-supported-extension-expressions'. This is to silence 94 `speedbar-supported-extension-expressions'. This is to silence
6 the compiler without breaking bootstrapping. 95 the compiler without breaking bootstrapping.
7 96
8 2004-08-22 Richard M. Stallman <rms@gnu.org> 97 2004-08-22 Richard M. Stallman <rms@gnu.org>
9 98
10 * textmodes/flyspell.el (flyspell-word): Use 99 * textmodes/flyspell.el (flyspell-word):
11 set-process-query-on-exit-flag. 100 Use set-process-query-on-exit-flag.
12 (flyspell-highlight-duplicate-region): Take POSS as arg. 101 (flyspell-highlight-duplicate-region): Take POSS as arg.
13 (flyspell-word): Pass POSS as arg. 102 (flyspell-word): Pass POSS as arg.
14 103
15 * progmodes/ada-xref.el: Many doc and style fixes. 104 * progmodes/ada-xref.el: Many doc and style fixes.
16 (ada-find-any-references): Use compilation-start. 105 (ada-find-any-references): Use compilation-start.
49 138
50 * speedbar.el, iswitchb.el, ido.el: Update AUCTeX information. 139 * speedbar.el, iswitchb.el, ido.el: Update AUCTeX information.
51 140
52 2004-08-22 Andreas Schwab <schwab@suse.de> 141 2004-08-22 Andreas Schwab <schwab@suse.de>
53 142
54 * cvs-status.el: Require pcvs during byte-compiling for 143 * cvs-status.el: Require pcvs during byte-compiling for defun-cvs-mode.
55 defun-cvs-mode.
56 144
57 2004-08-22 Masatake YAMATO <jet@gyve.org> 145 2004-08-22 Masatake YAMATO <jet@gyve.org>
58 146
59 * cvs-status.el (cvs-status-checkout): New function. 147 * cvs-status.el (cvs-status-checkout): New function.
60 (cvs-status-mode-map): Add a key definition for `cvs-status-checkout'. 148 (cvs-status-mode-map): Add a key definition for `cvs-status-checkout'.