aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman2002-09-12 03:30:13 +0000
committerRichard M. Stallman2002-09-12 03:30:13 +0000
commit7c3cb37dcc23292e653267d11b9920fda902fc36 (patch)
tree771a64687b44b63565d216e1f187f5909f162758
parentfdebad6415fe477394d2c0319e096ec623d33f8f (diff)
downloademacs-7c3cb37dcc23292e653267d11b9920fda902fc36.tar.gz
emacs-7c3cb37dcc23292e653267d11b9920fda902fc36.zip
*** empty log message ***
-rw-r--r--etc/NEWS11
-rw-r--r--lisp/ChangeLog19
-rw-r--r--src/ChangeLog18
3 files changed, 46 insertions, 2 deletions
diff --git a/etc/NEWS b/etc/NEWS
index 6ee3556c76f..2c68319a26b 100644
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -1060,6 +1060,12 @@ with Custom.
1060 1060
1061* Lisp Changes in Emacs 21.4 1061* Lisp Changes in Emacs 21.4
1062 1062
1063** When using non-toolkit scroll bars with the default width,
1064the scroll-bar-width frame parameter value is nil.
1065
1066** The new function copy-abbrev-table returns a new abbrev table that
1067is a copy of a given abbrev table.
1068
1063+++ 1069+++
1064** The option --script FILE runs Emacs in batch mode and loads FILE. 1070** The option --script FILE runs Emacs in batch mode and loads FILE.
1065It is useful for writing Emacs Lisp shell script files, because they 1071It is useful for writing Emacs Lisp shell script files, because they
@@ -1632,6 +1638,9 @@ or `bg:COLOR' has been removed. Lisp programs should use the
1632are used by define-derived-mode to make sure the mode hook for the 1638are used by define-derived-mode to make sure the mode hook for the
1633parent mode is run at the end of the child mode. 1639parent mode is run at the end of the child mode.
1634 1640
1641** define-derived-mode by default creates a new empty abbrev table.
1642It does not copy abbrevs from the parent mode's abbrev table.
1643
1635+++ 1644+++
1636** `provide' and `featurep' now accept an optional second argument 1645** `provide' and `featurep' now accept an optional second argument
1637to test/provide subfeatures. Also `provide' now checks `after-load-alist' 1646to test/provide subfeatures. Also `provide' now checks `after-load-alist'
@@ -1651,8 +1660,6 @@ accepts a float as UID parameter.
1651 1660
1652** `define-key-after' now accepts keys longer than 1. 1661** `define-key-after' now accepts keys longer than 1.
1653 1662
1654** `define-derived-mode' now accepts nil as the parent.
1655
1656** The local variable `no-byte-compile' in elisp files is now obeyed. 1663** The local variable `no-byte-compile' in elisp files is now obeyed.
1657 1664
1658** The Emacs Lisp byte-compiler now displays the actual line and 1665** The Emacs Lisp byte-compiler now displays the actual line and
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 82ede751a43..be21078b15d 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,22 @@
12002-09-11 Richard M. Stallman <rms@gnu.org>
2
3 * derived.el (define-derived-mode): When making new abbrev table,
4 don't try to copy the parent's abbrev table.
5
6 * ruler-mode.el (ruler-mode-left-scroll-bar-cols):
7 Always round scroll-bar-width parameter up.
8 If it is nil, use 14.
9
10 * abbrev.el (copy-abbrev-table): New function.
11
122002-09-11 Vinicius Jose Latorre <vinicius@cpqd.com.br>
13
14 * ps-print.el: Adjust ps-print-color-p, ps-default-fg and ps-default-bg
15 setting.
16 (ps-print-version): New version number (6.5.7).
17 (ps-mark-active-p): New fun.
18 (ps-print-preprint-region): Adjust code.
19
12002-09-11 Dave Love <fx@gnu.org> 202002-09-11 Dave Love <fx@gnu.org>
2 21
3 * international/mule.el (non-standard-designations-alist) 22 * international/mule.el (non-standard-designations-alist)
diff --git a/src/ChangeLog b/src/ChangeLog
index e322b1c9c30..96ba951ef8d 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,21 @@
12002-09-11 Richard M. Stallman <rms@gnu.org>
2
3 * unexsol.c: Don't use report_file_error; do it by hand
4 using dlerror.
5
6 * process.c (wait_reading_process_input, both versions):
7 Before calling turn_on_atimers, call stop_polling.
8
9 * emacs.c (syms_of_emacs) <command-line-args>: Doc fix.
10
11 * xdisp.c (try_scrolling): If after make_cursor_line_fully_visible
12 we go to too_near_end, call clear_glyph_matrix.
13 (redisplay_window): After make_cursor_line_fully_visible,
14 call clear_glyph_matrix and bypass `goto done'.
15
16 * xfns.c (x_report_frame_params): If FRAME_SCROLL_BAR_PIXEL_WIDTH is 0
17 and we have non-toolkit scroll bars, return nil for scroll-bar-width.
18
12002-09-10 Richard M. Stallman <rms@gnu.org> 192002-09-10 Richard M. Stallman <rms@gnu.org>
2 20
3 * fileio.c (Fdo_auto_save): Catch error making directory. 21 * fileio.c (Fdo_auto_save): Catch error making directory.