aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan Monnier2004-04-21 22:42:13 +0000
committerStefan Monnier2004-04-21 22:42:13 +0000
commit063a45c59c2f38fc2b4075e02a4186343a4b2d55 (patch)
tree25df83d95b97c6b2e387f10fd6397526805c584b
parente0a583f84a0bd4825952424bb8ab2ad93c7194d7 (diff)
downloademacs-063a45c59c2f38fc2b4075e02a4186343a4b2d55.tar.gz
emacs-063a45c59c2f38fc2b4075e02a4186343a4b2d55.zip
*** empty log message ***
-rw-r--r--lisp/ChangeLog41
-rw-r--r--src/ChangeLog6
2 files changed, 40 insertions, 7 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 6dee97cdb26..4b5ab80a042 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -2,6 +2,34 @@
2 2
3 * net/telnet.el (telnet): Add optional port arg. 3 * net/telnet.el (telnet): Add optional port arg.
4 4
52004-04-21 Stefan Monnier <monnier@iro.umontreal.ca>
6
7 * progmodes/compile.el (compilation-mode-font-lock-keywords):
8 Minor sanity check on the `hyperlink' slot.
9
10 * Makefile.in (recompile): Compile new files.
11
12 * emacs-lisp/bytecomp.el (batch-byte-recompile-directory):
13 Add byte-recompile-directory's optional `arg'.
14
15 * cvs-status.el (cvs-tree-use-charset): New var.
16 (cvs-tree-char-space, cvs-tree-char-hbar, cvs-tree-char-vbar)
17 (cvs-tree-char-branch, cvs-tree-char-eob, cvs-tree-char-bob)
18 (cvs-status-cvstrees): Use it.
19
20 * emacs-lisp/checkdoc.el (checkdoc-output-mode):
21 Make it a normal major mode.
22 (checkdoc-buffer-label): Make sure the file name is meaningful.
23 (checkdoc-output-to-error-buffer): Remove.
24 (checkdoc-error, checkdoc-start-section): Rewrite.
25
26 * info.el (info-node, info-menu-5, info-xref, info-header-node)
27 (Info-title-1-face, Info-title-2-face, Info-title-3-face)
28 (Info-title-4-face): Use new syntax.
29 (info-xref-visited): Inherit from info-xref.
30
31 * progmodes/python.el (python-maybe-jython): Don't assume point-min==1.
32
52004-04-21 Teodor Zlatanov <tzz@lifelogs.com> 332004-04-21 Teodor Zlatanov <tzz@lifelogs.com>
6 34
7 * simple.el (next-error-last-buffer, next-error-function): 35 * simple.el (next-error-last-buffer, next-error-function):
@@ -38,12 +66,12 @@
38 66
392004-04-21 Lars Hansen <larsh@math.ku.dk> 672004-04-21 Lars Hansen <larsh@math.ku.dk>
40 68
41 * desktop.el (desktop-buffer-mode-handlers): New variable. Alist 69 * desktop.el (desktop-buffer-mode-handlers): New variable.
42 of major mode specific functions to restore a desktop buffer. 70 Alist of major mode specific functions to restore a desktop buffer.
43 (desktop-buffer-handlers): Make variable obsolete. 71 (desktop-buffer-handlers): Make variable obsolete.
44 (desktop-create-buffer): Use desktop-buffer-mode-handlers. Catch 72 (desktop-create-buffer): Use desktop-buffer-mode-handlers.
45 errors signaled in handlers. Update buffer count. Evaluate 73 Catch errors signaled in handlers. Update buffer count.
46 desktop-buffer-point. 74 Evaluate desktop-buffer-point.
47 (desktop-buffer-dired): Rename to dired-restore-desktop-buffer and 75 (desktop-buffer-dired): Rename to dired-restore-desktop-buffer and
48 move to dired.el. 76 move to dired.el.
49 (desktop-buffer-info): Rename to Info-restore-desktop-buffer and 77 (desktop-buffer-info): Rename to Info-restore-desktop-buffer and
@@ -63,8 +91,7 @@
63 dired-desktop-buffer-misc-data and move to dired.el. 91 dired-desktop-buffer-misc-data and move to dired.el.
64 (desktop-buffer-info-misc-data): Rename to 92 (desktop-buffer-info-misc-data): Rename to
65 Info-desktop-buffer-misc-data and move to info.el. 93 Info-desktop-buffer-misc-data and move to info.el.
66 (desktop-read): Add message about number of buffers 94 (desktop-read): Add message about number of buffers restored/failed.
67 restored/failed.
68 * dired.el (dired-restore-desktop-buffer) Move from desktop.el. 95 * dired.el (dired-restore-desktop-buffer) Move from desktop.el.
69 Add parameters. Pause to display error only when 96 Add parameters. Pause to display error only when
70 desktop-missing-file-warning is non-nil. 97 desktop-missing-file-warning is non-nil.
diff --git a/src/ChangeLog b/src/ChangeLog
index 6839c70e398..e535b750949 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,9 @@
12004-04-21 Stefan Monnier <monnier@iro.umontreal.ca>
2
3 * lisp.h (XINT) [EXPLICIT_SIGN_EXTEND && !NO_UNION_TYPE]:
4 Don't make assumptions about the relative place of i and val.
5 (EQ) [!NO_UNION_TYPE]: Don't forget to check the type match as well.
6
12004-04-21 Kim F. Storm <storm@cua.dk> 72004-04-21 Kim F. Storm <storm@cua.dk>
2 8
3 * dispextern.h (struct glyph_slice): New struct. 9 * dispextern.h (struct glyph_slice): New struct.