comparison lisp/ChangeLog @ 51217:7d48b06d1fd1

*** empty log message ***
author Stefan Monnier <monnier@iro.umontreal.ca>
date Sun, 25 May 2003 00:45:01 +0000
parents 283c294b88ea
children 95f3af74f32d
comparison
equal deleted inserted replaced
51216:f1218b1b5c06 51217:7d48b06d1fd1
1 2003-05-24 Andreas Schwab <schwab@suse.de> 1 2003-05-24 Andreas Schwab <schwab@suse.de>
2 2
3 * files.el (insert-directory): Preserve CR in a file name. 3 * files.el (insert-directory): Preserve CR in a file name.
4
5 2003-05-24 Stefan Monnier <monnier@cs.yale.edu>
6
7 * skeleton.el (skeleton-abbrev-cleanup, skeleton-proxy):
8 Remove obsolete code.
9
10 * term/w32-win.el (iconify-or-deiconify-frame):
11 * term/mac-win.el (iconify-or-deiconify-frame): Move to frame.el.
12
13 * term/x-win.el (iconify-or-deiconify-frame): Move to frame.el.
14 Turn on mouse-wheel support by default.
15
16 * frame.el (iconify-or-deiconify-frame): Move from term/x-win.el.
4 17
5 2003-05-24 Kai Gro,A_(Bjohann <kai.grossjohann@gmx.net> 18 2003-05-24 Kai Gro,A_(Bjohann <kai.grossjohann@gmx.net>
6 19
7 * net/tramp.el: Version 2.0.34 released. 20 * net/tramp.el: Version 2.0.34 released.
8 (tramp-handle-file-symlink-p): If target of symlink is absolute, 21 (tramp-handle-file-symlink-p): If target of symlink is absolute,
13 (tramp-handle-expand-file-name): Make default method explicit in 26 (tramp-handle-expand-file-name): Make default method explicit in
14 file name. 27 file name.
15 (tramp-unified-filenames): Move to an earlier spot in the file. 28 (tramp-unified-filenames): Move to an earlier spot in the file.
16 (top-level): If tramp-unified-filenames is set and we're running 29 (top-level): If tramp-unified-filenames is set and we're running
17 on XEmacs, load tramp-efs. 30 on XEmacs, load tramp-efs.
18 (tramp-wait-for-shell-prompt, tramp-barf-if-no-shell-prompt): New 31 (tramp-wait-for-shell-prompt, tramp-barf-if-no-shell-prompt):
19 functions, used by tramp-send-command-internal. 32 New functions, used by tramp-send-command-internal.
20 (tramp-open-connection-setup-interactive-shell): Simplify using 33 (tramp-open-connection-setup-interactive-shell): Simplify using
21 `tramp-send-command-internal'. 34 `tramp-send-command-internal'.
22 (tramp-send-command-internal): New function. 35 (tramp-send-command-internal): New function.
23 (tramp-methods): New entries "remsh" and "remcp" are like "rsh" 36 (tramp-methods): New entries "remsh" and "remcp" are like "rsh"
24 and "rcp" but invoke "remsh" instead of "rsh". This is useful on 37 and "rcp" but invoke "remsh" instead of "rsh". This is useful on
25 Cray systems, for instance. Unify tramp-rsh-program, 38 Cray systems, for instance. Unify tramp-rsh-program,
26 tramp-telnet-program, tramp-su-program into tramp-login-program. 39 tramp-telnet-program, tramp-su-program into tramp-login-program.
27 Likewise with tramp-login-args, tramp-copy-program, 40 Likewise with tramp-login-args, tramp-copy-program,
28 tramp-copy-args, tramp-copy-keep-date-arg. Users changed. New 41 tramp-copy-args, tramp-copy-keep-date-arg. Users changed. New
29 method plink1; like plink but pass "-1" to force protocol version 42 method plink1; like plink but pass "-1" to force protocol version 1.
30 1.
31 (tramp-default-method): Use plink as the default on machines where 43 (tramp-default-method): Use plink as the default on machines where
32 the plink program is present. 44 the plink program is present.
33 (tramp-completion-file-name-handler): Add safe-magic property. 45 (tramp-completion-file-name-handler): Add safe-magic property.
34 (tramp-shell-prompt-pattern): Allow ANSI escapes at 46 (tramp-shell-prompt-pattern): Allow ANSI escapes at
35 end of prompt. (ANSI escapes elsewhere in the prompt are 47 end of prompt. (ANSI escapes elsewhere in the prompt are
39 51
40 2003-05-24 Michael Albinus <Michael.Albinus@alcatel.de> 52 2003-05-24 Michael Albinus <Michael.Albinus@alcatel.de>
41 53
42 * net/tramp.el (tramp-handle-file-truename): `sym' shouldn't be 54 * net/tramp.el (tramp-handle-file-truename): `sym' shouldn't be
43 quoted. 55 quoted.
44 (tramp-methods, tramp-multi-connection-function-alist): Use 56 (tramp-methods, tramp-multi-connection-function-alist):
45 argument "-p Password:" for "sudo" method, because password prompt 57 Use argument "-p Password:" for "sudo" method, because password prompt
46 might be changed by either passprompt option in /etc/sudoers, or 58 might be changed by either passprompt option in /etc/sudoers, or
47 SUDO_PROMPT environment variable. Suggested by Peter Oliver 59 SUDO_PROMPT environment variable. Suggested by Peter Oliver
48 <peter.oliver@aquila-networks.co.uk>. 60 <peter.oliver@aquila-networks.co.uk>.
61
62 2003-05-23 Stefan Monnier <monnier@cs.yale.edu>
63
64 * mail/supercite.el: Use `push' and replace `regi-pos' by equivalents.
65 (sc-emacs-features): Remove. Use better tests instead.
66 (sc-minor-mode): Use define-minor-mode.
67 (sc-mode-string, sc-set-mode-string): Remove.
68 Use a better modeline expression instead.
69 (sc-completing-read, sc-read-string, sc-submatch, sc-member)
70 (sc-string-text): Remove those compatibility functions.
71
72 * pcvs.el (cvs-temp-buffer): Kill running process in displayed buffers.
73 (cvs-make-cvs-buffer): Fix up format of the header.
74
75 * progmodes/perl-mode.el (perl-font-lock-syntactic-keywords):
76 Match more cases of /.../ patterns.
49 77
50 2003-05-23 Nick Roberts <nick@nick.uklinux.net> 78 2003-05-23 Nick Roberts <nick@nick.uklinux.net>
51 79
52 * gdb-ui.el (gdba): Accommodate Fortran programs. 80 * gdb-ui.el (gdba): Accommodate Fortran programs.
53 (gud-gdba-command-name): Use -noasync in all cases (as Fortran 81 (gud-gdba-command-name): Use -noasync in all cases (as Fortran
57 85
58 2003-05-23 Andre Spiegel <spiegel@gnu.org> 86 2003-05-23 Andre Spiegel <spiegel@gnu.org>
59 87
60 * vc-cvs.el (vc-cvs-checkout): Don't leave the branch when 88 * vc-cvs.el (vc-cvs-checkout): Don't leave the branch when
61 REV is t. From Don Provan <dprovan@bivio.net> 89 REV is t. From Don Provan <dprovan@bivio.net>
62 90
63 2003-05-23 Richard M. Stallman <rms@gnu.org> 91 2003-05-23 Richard M. Stallman <rms@gnu.org>
64 92
65 * forms.el (forms--mode-commands1): Bind \t, not `tab'. 93 * forms.el (forms--mode-commands1): Bind \t, not `tab'.
66 (forms--mode-commands): Don't bind \t in the maps where 94 (forms--mode-commands): Don't bind \t in the maps where
67 we call forms--mode-commands1. 95 we call forms--mode-commands1.
87 (lm-section-start): New function; rewrite of `lm-section-mark'. 115 (lm-section-start): New function; rewrite of `lm-section-mark'.
88 (lm-section-mark): Make alias of `lm-section-start'. 116 (lm-section-mark): Make alias of `lm-section-start'.
89 (lm-section-end): New function. 117 (lm-section-end): New function.
90 (lm-code-start): New function; rewrite of `lm-code-mark'. 118 (lm-code-start): New function; rewrite of `lm-code-mark'.
91 (lm-code-mark): Make alias of `lm-code-start'. 119 (lm-code-mark): Make alias of `lm-code-start'.
92 (lm-commentary-start): New function; rewrite of 120 (lm-commentary-start): New function; rewrite of `lm-commentary-mark'.
93 `lm-commentary-mark'.
94 (lm-commentary-mark): Make alias of `lm-commentary-start'. 121 (lm-commentary-mark): Make alias of `lm-commentary-start'.
95 (lm-commentary-end): New function. 122 (lm-commentary-end): New function.
96 (lm-history-start): New function; rewrite of `lm-history-mark'. 123 (lm-history-start): New function; rewrite of `lm-history-mark'.
97 (lm-history-mark): Make alias of `lm-history-start'. 124 (lm-history-mark): Make alias of `lm-history-start'.
98 (lm-commentary): Use `lm-commentary-end' to find the end of the 125 (lm-commentary): Use `lm-commentary-end' to find the end of the
99 commentary section. 126 commentary section.
100 127
101 * emacs-lisp/checkdoc.el (checkdoc-file-comments-engine): Use 128 * emacs-lisp/checkdoc.el (checkdoc-file-comments-engine):
102 `lm-commentary-end' to find the end of the commentary section. 129 Use `lm-commentary-end' to find the end of the commentary section.
103 130
104 2003-05-22 Ken Stevens <kstevens@ichips.intel.com> 131 2003-05-22 Stefan Monnier <monnier@cs.yale.edu>
132
133 * skeleton.el (define-skeleton): Use the `no-self-insert' property.
134 (skeleton-proxy-new): Fix docstring. Remove broken interactive spec.
135 Rely on use `no-self-insert' rather than `skeleton-abbrev-cleanup'.
136 (skeleton-internal-1): Add a `recursive' argument.
137 (skeleton-internal-list): Use it to propagate `recursive'.
138
139 2003-05-22 Ken Stevens <kstevens@ichips.intel.com>
105 140
106 * ispell.el: Sync to version 3.6. 141 * ispell.el: Sync to version 3.6.
107 Summary: MIME support added for e-mail processing that 142 Summary: MIME support added for e-mail processing that
108 skips encoded regions. Allow user to skip saving Fcc messages with 143 skips encoded regions. Allow user to skip saving Fcc messages with
109 large attachments. Fixed region skipping bug with multi-line 144 large attachments. Fixed region skipping bug with multi-line