comparison lisp/ChangeLog @ 50975:bf7c2783b20d

*** empty log message ***
author Stefan Monnier <monnier@iro.umontreal.ca>
date Tue, 13 May 2003 20:15:13 +0000
parents acc69db7edf8
children 22b7d191671a
comparison
equal deleted inserted replaced
50974:acc69db7edf8 50975:bf7c2783b20d
1 2003-05-13 Stefan Monnier <monnier@cs.yale.edu>
2
3 * simple.el (back-to-indentation): Simplify.
4 (undo-equiv-table, undo-in-region, undo-no-redo): New vars.
5 (undo): Use them to implement the no-redo form of undo.
6 (undo-only): New fun.
7 (shell-command): Don't require `shell' since shell-mode is autoloaded.
8 (insert-buffer): Simplify.
9 (completion-setup-function): Use minibufferp.
10 (event-apply-alt-modifier, event-apply-super-modifier)
11 (event-apply-hyper-modifier, event-apply-shift-modifier)
12 (event-apply-control-modifier, event-apply-meta-modifier):
13 Fix docstring to show the proper key sequence.
14
15 * uniquify.el (uniquify-after-kill-buffer-p): Set default to t.
16 (uniquify-ignore-buffers-re): Revert to nil now that uniquify
17 is more careful about preserving buffer names.
18
19 * menu-bar.el (menu-bar-options-menu) <cua-mode>:
20 Use menu-bar-make-mm-toggle.
21
22 * files.el (file-relative-name): Remove dead code.
23 Make sure \n in a filename does not confuse us.
24
25 * help-fns.el (describe-variable): Mention permanent local status.
26
27 * comint.el (comint-carriage-motion, comint-output-filter):
28 Bind inhibit-read-only rather than buffer-read-only.
29 (comint-truncate-buffer): Bind inhibit-read-only.
30
31 * pcvs.el (cvs-make-cvs-buffer): Add the tag info.
32 (cvs-mode): Prevent pilot-error.
33
34 * vc-mcvs.el (vc-mcvs-registered, vc-mcvs-root): Check the output
35 of file-name-directory for nil.
36
1 2003-05-13 Simon Josefsson <jas@extundo.com> 37 2003-05-13 Simon Josefsson <jas@extundo.com>
2 38
3 * mail/smtpmail.el (smtpmail-open-stream): Don't hard code 39 * mail/smtpmail.el (smtpmail-open-stream): Don't hard code
4 starttls-program. 40 starttls-program.
5 41
6 2003-05-13 Rajesh Vaidheeswarran <rv@gnu.org> 42 2003-05-13 Rajesh Vaidheeswarran <rv@gnu.org>
7 43
8 * whitespace.el (whitespace-global-mode): Add :link entry 44 * whitespace.el (whitespace-global-mode): Add :link entry
9 to the commentary section in whitespace.el 45 to the commentary section in whitespace.el
10 46
11 2003-05-13 Nick Roberts <nick@nick.uklinux.net> 47 2003-05-13 Nick Roberts <nick@nick.uklinux.net>
12 48
13 * gdb-ui.el (gdb-invalidate-assembler): Update assembler buffer 49 * gdb-ui.el (gdb-invalidate-assembler): Update assembler buffer
14 correctly when frame changes. 50 correctly when frame changes.
15 (gdb-info-threads-custom, gdb-threads-buffer-name) 51 (gdb-info-threads-custom, gdb-threads-buffer-name)
16 (gdb-display-threads-buffer, gdb-frame-threads-buffer) 52 (gdb-display-threads-buffer, gdb-frame-threads-buffer)
17 (gdb-threads-mode-map, gdb-threads-mode, gdb-get-thread-number) 53 (gdb-threads-mode-map, gdb-threads-mode, gdb-get-thread-number)
18 (gdb-threads-select, gdb-threads-mouse-select): New functions and 54 (gdb-threads-select, gdb-threads-mouse-select): New functions and
19 variable for a buffer that provides a selectable threads list. 55 variable for a buffer that provides a selectable threads list.
56
57 2003-05-12 Stefan Monnier <monnier@cs.yale.edu>
58
59 * pcvs-parse.el (cvs-parse-table): `New directory' messages include
60 the full path.
61
62 * pcvs.el (cvs-minor-current-files): Move before first use.
63 (defun-cvs-mode): Remove unused var `restdoc'.
64 (cvs-edit-log-revision, ediff-after-quit-hook-internal): Declare.
65 (cvs-mode-diff-backup): Remove unused var `filter'.
66 (cvs-mode-run): Remove unused var `cvs-buf'.
67 (cvs-mode-do): Remove unused arg `parse'.
68 (cvs-retrieve-revision): Make sure HEAD gets the head of the branch.
69
70 * textmodes/sgml-mode.el (sgml-namespace-re): New const.
71 (sgml-namespace-face): New face.
72 (sgml-font-lock-keywords-1): Use them.
20 73
21 2003-05-11 Kevin Ryde <user42@zip.com.au> 74 2003-05-11 Kevin Ryde <user42@zip.com.au>
22 75
23 * info-look.el (info-lookup-make-completions): Allow colons in index 76 * info-look.el (info-lookup-make-completions): Allow colons in index
24 entries by looking for ": " to terminate, as per latest info.el. 77 entries by looking for ": " to terminate, as per latest info.el.