comparison lisp/ChangeLog @ 50948:12e60748ae66

*** empty log message ***
author Stefan Monnier <monnier@iro.umontreal.ca>
date Sun, 11 May 2003 00:16:14 +0000
parents 4becc854f9f6
children 75cc899eee26
comparison
equal deleted inserted replaced
50947:15c3c47aca50 50948:12e60748ae66
1 2003-05-10 Stefan Monnier <monnier@cs.yale.edu> 1 2003-05-10 Stefan Monnier <monnier@cs.yale.edu>
2
3 * newcomment.el (comment-indent): Try to align to adjacent comments.
4 (comment-with-narrowing): Actually use the arguments.
5 (comment-valid-prefix-p): Rename from comment-valid-prefix
6 and fix to actually use its argument.
7
8 * tex-mode (tex-mode-syntax-table): ~ is not whitespace.
9 (tex-guess-mode): Add `renewcommand'.
10 (tex-mode): Move the autoload to get the correct docstring and usage.
11
12 * uniquify.el (uniquify-rationalize-file-buffer-names):
13 Refresh the dirname in the case that rename-buffer was skipped.
14 (uniquify-buffer-file-name): Return a dirname with no trailing slash.
2 15
3 * mail/smtpmail.el (smtpmail-send-queued-mail): Use point-at-bol 16 * mail/smtpmail.el (smtpmail-send-queued-mail): Use point-at-bol
4 instead of forward-line. 17 instead of forward-line.
5 18
6 2003-05-10 Oliver Scholz <alkibiades@gmx.de> 19 2003-05-10 Oliver Scholz <alkibiades@gmx.de>
10 2003-05-09 Sam Steingold <sds@gnu.org> 23 2003-05-09 Sam Steingold <sds@gnu.org>
11 24
12 * pcvs.el (cvs-mode-find-file): Fixed the last patch's logic. 25 * pcvs.el (cvs-mode-find-file): Fixed the last patch's logic.
13 26
14 2003-05-09 Stefan Monnier <monnier@cs.yale.edu> 27 2003-05-09 Stefan Monnier <monnier@cs.yale.edu>
28
29 * newcomment.el (comment-indent): Be more careful when inserting
30 the space, and insert it before setting `begpos'.
31
32 * vc.el: New backend functions `delete-file' and `repository-hostname'.
33 (vc-stay-local): New var. Mostly taken from vc-cvs-stay-local.
34 (vc-stay-local-p): New fun. Adapted from vc-cvs-stay-local-p.
35 (vc-diff-switches-list): Revert to the Emacs-21.[123] semantics.
36 Mark as obsolete.
37 (vc-delete-file): New command.
38 (vc-default-rename-file): New function.
39 (vc-rename-file): Use it.
40 Be careful to disallow renaming if the file is locked or out-of-date.
41 (vc-ensure-vc-buffer, vc-next-action-on-file, vc-insert-headers)
42 (vc-cancel-version, vc-annotate): Use buffer-file-name variable.
43
44 * vc-mcvs.el (vc-mcvs-stay-local): Remove unused var.
45 (vc-mcvs-state, vc-mcvs-dir-state, vc-mcvs-print-log, vc-mcvs-diff)
46 (vc-mcvs-diff-tree, vc-mcvs-annotate-command)
47 (vc-mcvs-make-version-backups-p): Use vc-stay-local-p.
48 (vc-mcvs-checkin): Disallow commits to a numbered rev.
49 (vc-mcvs-repository-hostname): New function.
50 (vc-mcvs-stay-local-p): Remove.
51
52 * vc-cvs.el (vc-cvs-mode-line-string): Use vc-default-mode-line-string.
53 (vc-cvs-delete-file, vc-cvs-rename-file): New functions.
54
55 * vc-svn.el (vc-svn-rename-file): New fun.
56 (vc-svn-diff): Correctly check svn's return status.
57 (vc-svn-state, vc-svn-dir-state, vc-svn-print-log, vc-svn-diff)
58 (vc-svn-diff-tree): Use vc-stay-local-p.
59 (vc-svn-register-switches, vc-svn-diff-switches, vc-svn-header)
60 (vc-svn-use-edit): Fix the :version property.
61 (vc-svn-stay-local): Remove unused var.
62 (vc-svn-mode-line-string): Remove, use the default instead.
63 (vc-svn-repository-hostname): New fun taken from vc-svn-stay-local-p.
64 (vc-svn-stay-local-p): Remove.
15 65
16 * uniquify.el: Use the original buffer-name as `base' in place of the 66 * uniquify.el: Use the original buffer-name as `base' in place of the
17 nondirectory part of the file name. 67 nondirectory part of the file name.
18 (uniquify-rationalize-file-buffer-names): 68 (uniquify-rationalize-file-buffer-names):
19 Split the `newbuffile' arg into `base' and `dirname'. 69 Split the `newbuffile' arg into `base' and `dirname'.