aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKim F. Storm2004-04-13 22:24:34 +0000
committerKim F. Storm2004-04-13 22:24:34 +0000
commita27ddfaf2b618b7fe1255747e10a9f7e8d6d4633 (patch)
treedec2faa7f426f3d21507940fa6b0dadf9b5edf65
parente2c608243a2565699ff13d6d5a423aa8e5a6531e (diff)
downloademacs-a27ddfaf2b618b7fe1255747e10a9f7e8d6d4633.tar.gz
emacs-a27ddfaf2b618b7fe1255747e10a9f7e8d6d4633.zip
*** empty log message ***
-rw-r--r--etc/NEWS6
-rw-r--r--lisp/ChangeLog7
-rw-r--r--src/ChangeLog19
3 files changed, 32 insertions, 0 deletions
diff --git a/etc/NEWS b/etc/NEWS
index f798b93479a..6e8a5766e33 100644
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -88,6 +88,12 @@ types any more. Add -DUSE_LISP_UNION_TYPE if you want union types.
88 88
89* Changes in Emacs 21.4 89* Changes in Emacs 21.4
90 90
91** New command line option -Q.
92
93This is like using -q --no-site-file, but in addition it also disables
94the menu-bar, the tool-bar, the scroll-bars, tool tips, the blinking
95cursor, and the fancy startup screen.
96
91** C-h v and C-h f commands now include a hyperlink to the C source for 97** C-h v and C-h f commands now include a hyperlink to the C source for
92variables and functions defined in C (if the C source is available). 98variables and functions defined in C (if the C source is available).
93 99
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index ee1b6ce7176..0fbdc018379 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,5 +1,12 @@
12004-04-14 Kim F. Storm <storm@cua.dk> 12004-04-14 Kim F. Storm <storm@cua.dk>
2 2
3 * startup.el (emacs-quick-startup): New defvar (set by -Q).
4 (command-line): New option -Q. Like -q --no-site-file, but
5 in addition it also disables menu-bar, tool-bar, scroll-bars,
6 tool-tips, and the blinking cursor.
7 (command-line-1): Skip startup screen if -Q.
8 (fancy-splash-head): Use :align-to center prop to center splash image.
9
3 * emulation/cua-base.el (cua-read-only-cursor-color) 10 * emulation/cua-base.el (cua-read-only-cursor-color)
4 (cua-overwrite-cursor-color, cua-global-mark-cursor-color): Doc fix. 11 (cua-overwrite-cursor-color, cua-global-mark-cursor-color): Doc fix.
5 12
diff --git a/src/ChangeLog b/src/ChangeLog
index 16ad872e9c7..8a93a5d900e 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,22 @@
12004-04-14 Kim F. Storm <storm@cua.dk>
2
3 * editfns.c (Fformat): Fix allocation size of precision array.
4
5 * dispnew.c (update_window): Only set changed_p if
6 scrolling_window actually did scroll.
7 (scrolling_window): Only return 1 if we actually did scroll.
8
9 * xdisp.c (get_glyph_string_clip_rect): Fix reduction of cursor
10 height to glyph height when cursor row is not fully visible.
11 (make_cursor_line_fully_visible): Add FORCE_P arg to return
12 failure in case row is higher than window. Callers changed.
13 (try_scrolling): Fix loop in scrolling if last_line_misfit (from Gerd).
14 Try to scroll partially visible, higher-than-window cursor row.
15 (redisplay_window): Always try to scroll partially visible,
16 higher-than-window cursor row - both initially and again with
17 centering_position = 0.
18 Clear desired matrix before retrying with centering_position = 0.
19
12004-04-13 Joe Buehler <jbuehler@hekimian.com> 202004-04-13 Joe Buehler <jbuehler@hekimian.com>
2 21
3 * sheap.c, unexcw.c: New files. 22 * sheap.c, unexcw.c: New files.