aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan Monnier2002-11-14 17:09:09 +0000
committerStefan Monnier2002-11-14 17:09:09 +0000
commit8e685dc67b112ea70f89dd17ce2b6c868fec6b36 (patch)
tree0e87d72894c53b5e8a6ff02dd70fbeaeb38f288a
parent59daa29a0acb5b4cb23ab1f5fed5ae86fecd1d32 (diff)
downloademacs-8e685dc67b112ea70f89dd17ce2b6c868fec6b36.tar.gz
emacs-8e685dc67b112ea70f89dd17ce2b6c868fec6b36.zip
*** empty log message ***
-rw-r--r--lisp/ChangeLog38
-rw-r--r--src/ChangeLog25
2 files changed, 43 insertions, 20 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 11ae7a9ed55..64bb393c33e 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,7 +1,7 @@
12002-11-14 Edward M. Reingold <reingold@emr.cs.iit.edu> 12002-11-14 Edward M. Reingold <reingold@emr.cs.iit.edu>
2 2
3 * calendar/diary-lib.el (make-diary-entry): Allow for local variables at 3 * calendar/diary-lib.el (make-diary-entry): Allow for local variables
4 end of diary file. 4 at end of diary file.
5 5
62002-11-14 Kim F. Storm <storm@cua.dk> 62002-11-14 Kim F. Storm <storm@cua.dk>
7 7
@@ -38,6 +38,10 @@
38 paragraph with `fill-nobreak-invisible' let-bound to t. 38 paragraph with `fill-nobreak-invisible' let-bound to t.
39 Don't use `display' property; insert "see" directly in buffer. 39 Don't use `display' property; insert "see" directly in buffer.
40 40
412002-11-13 Stefan Monnier <monnier@cs.yale.edu>
42
43 * pcvs.el (cvs-mode-run): Don't pass "." if not needed.
44
412002-11-13 Andre Spiegel <spiegel@gnu.org> 452002-11-13 Andre Spiegel <spiegel@gnu.org>
42 46
43 * vc-rcs.el (vc-rcs-registered): Improve comment. 47 * vc-rcs.el (vc-rcs-registered): Improve comment.
@@ -46,8 +50,8 @@
46 50
472002-11-13 Tim Van Holder <tim.vanholder@anubex.com> (tiny change) 512002-11-13 Tim Van Holder <tim.vanholder@anubex.com> (tiny change)
48 52
49 * progmodes/compile.el (compilation-error-regexp-alist): Don't 53 * progmodes/compile.el (compilation-error-regexp-alist):
50 include colon and space after a file name as part of the name. 54 Don't include colon and space after a file name as part of the name.
51 55
522002-11-13 Richard M. Stallman <rms@gnu.org> 562002-11-13 Richard M. Stallman <rms@gnu.org>
53 57
@@ -56,14 +60,33 @@
562002-11-13 Kenichi Handa <handa@m17n.org> 602002-11-13 Kenichi Handa <handa@m17n.org>
57 61
58 * replace.el (occur-engine): Set buffer-file-coding-system of 62 * replace.el (occur-engine): Set buffer-file-coding-system of
59 OUT-BUF to that of one of BUFFERS if they locally bind that 63 OUT-BUF to that of one of BUFFERS if they locally bind that variable.
60 variable.
61 64
622002-11-13 Markus Rost <rost@math.ohio-state.edu> 652002-11-13 Markus Rost <rost@math.ohio-state.edu>
63 66
64 * custom.el (custom-handle-all-keywords): Fix arg passed to 67 * custom.el (custom-handle-all-keywords): Fix arg passed to
65 custom-add-to-group. 68 custom-add-to-group.
66 69
702002-11-12 Stefan Monnier <monnier@cs.yale.edu>
71
72 * pcvs-defs.el (cvs-mode-map): Remove M-f binding.
73 (cvs-minor-mode-map): Add e binding in log-view-mode.
74
75 * progmodes/perl-mode.el (perl-hanging-paren-p): New fun.
76 (perl-indent-line): Look at the open-paren to indent a close-paren.
77 (perl-calculate-indent): Try to better indent args after hanging paren.
78 Remove special code for open-paren-in-column-0.
79
80 * textmodes/sgml-mode.el (sgml-namify-char): New cmd.
81 (sgml-name-char): Use it.
82 (sgml-tag-last, sgml-tag-history): New vars.
83 (sgml-tag): Use them.
84 (sgml-skip-tag-forward): Use sgml-tag-syntax-table.
85 (sgml-delete-tag): Remove resulting empty lines.
86 (sgml-tag) <symbol-plist>: Don't make intangible.
87 (sgml-parse-tag-backward): Add limit argument.
88 (html-autoview-mode): Use define-minor-mode.
89
672002-11-12 Markus Rost <rost@math.ohio-state.edu> 902002-11-12 Markus Rost <rost@math.ohio-state.edu>
68 91
69 * vc-rcs.el (vc-rcs-registered): Handle the autoload cookie so 92 * vc-rcs.el (vc-rcs-registered): Handle the autoload cookie so
@@ -111,8 +134,7 @@
111 134
1122002-11-09 Dave Love <fx@gnu.org> 1352002-11-09 Dave Love <fx@gnu.org>
113 136
114 * international/mule-cmds.el (current-language-environment): Fix 137 * international/mule-cmds.el (current-language-environment): Fix :type.
115 :type.
116 138
117 * international/ucs-tables.el: Revert to using 139 * international/ucs-tables.el: Revert to using
118 translation-table-for-input instead of keyboard-translate-table. 140 translation-table-for-input instead of keyboard-translate-table.
diff --git a/src/ChangeLog b/src/ChangeLog
index 0a07e2b6350..e2da6fbb52f 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -2,20 +2,19 @@
2 2
3 * alloc.c (SETJMP_WILL_NOT_WORK): Add note. 3 * alloc.c (SETJMP_WILL_NOT_WORK): Add note.
4 4
5 * xterm.c (x_draw_relief_rect, x_draw_box_rect, x_update_cursor): 5 * xterm.c (x_draw_relief_rect, x_draw_box_rect, x_update_cursor):
6 * xmenu.c (unuse_menu_items, digest_single_submenu): 6 * xmenu.c (unuse_menu_items, digest_single_submenu):
7 * xfns.c (x_put_x_image): 7 * xfns.c (x_put_x_image):
8 * xdisp.c (message2_nolog, set_message): 8 * xdisp.c (message2_nolog, set_message):
9 * undo.c (record_point): 9 * undo.c (record_point):
10 * terminfo.c (tparam): 10 * terminfo.c (tparam):
11 * syntax.c (scan_sexps_forward): 11 * syntax.c (scan_sexps_forward):
12 * scroll.c (calculate_scrolling, calculate_direct_scrolling): 12 * scroll.c (calculate_scrolling, calculate_direct_scrolling):
13 * composite.c (update_compositions): 13 * composite.c (update_compositions):
14 * cm.c (calccost, cmgoto): 14 * cm.c (calccost, cmgoto):
15 * charset.c (c_string_width): Declare all args (per C99). 15 * charset.c (c_string_width): Declare all args (per C99).
16 16
17 * frame.h (get_specified_cursor_type, get_window_cursor_type): 17 * frame.h (get_specified_cursor_type, get_window_cursor_type): Declare.
18 Declare.
19 18
20 * lisp.h (get_specified_cursor_type, get_window_cursor_type): 19 * lisp.h (get_specified_cursor_type, get_window_cursor_type):
21 Don't declare. 20 Don't declare.
@@ -35,6 +34,8 @@
35 34
362002-11-12 Stefan Monnier <monnier@cs.yale.edu> 352002-11-12 Stefan Monnier <monnier@cs.yale.edu>
37 36
37 * fns.c (Fmap_char_table): Don't use map_char_table's function arg.
38
38 * syntax.c (scan_sexps_forward): Undo last patch. 39 * syntax.c (scan_sexps_forward): Undo last patch.
39 Use a more obvious fix: check eob before updating the syntax table. 40 Use a more obvious fix: check eob before updating the syntax table.
40 41