aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLute Kamstra2003-09-08 08:06:58 +0000
committerLute Kamstra2003-09-08 08:06:58 +0000
commit5df034de1fd675906cb2dab28f59fb46bbb7cb39 (patch)
treefdb7c131f7ed6b01b2ceac922115d89be5d0bd40
parent80108537f9dd6a50dc4ee1ece983936657193a15 (diff)
downloademacs-5df034de1fd675906cb2dab28f59fb46bbb7cb39.tar.gz
emacs-5df034de1fd675906cb2dab28f59fb46bbb7cb39.zip
*** empty log message ***
-rw-r--r--etc/NEWS9
-rw-r--r--lisp/ChangeLog5
-rw-r--r--lispref/ChangeLog5
-rw-r--r--man/ChangeLog8
-rw-r--r--src/ChangeLog7
5 files changed, 34 insertions, 0 deletions
diff --git a/etc/NEWS b/etc/NEWS
index f31dbb35eca..662556b9abb 100644
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -1454,6 +1454,10 @@ Meta and Alt:
1454 1454
1455* New modes and packages in 21.4 1455* New modes and packages in 21.4
1456 1456
1457+++
1458** The new global minor mode `size-indication-mode' (off by default)
1459shows the size of accessible part of the buffer on the mode line.
1460
1457** GDB-Script-mode is used for files like .gdbinit. 1461** GDB-Script-mode is used for files like .gdbinit.
1458 1462
1459--- 1463---
@@ -2494,6 +2498,11 @@ Reference manual for more detailed documentation.
2494** Mode line display ignores text properties in the value 2498** Mode line display ignores text properties in the value
2495of a variable whose `risky-local-variables' property is nil. 2499of a variable whose `risky-local-variables' property is nil.
2496 2500
2501+++
2502** The new `%i' and `%I' constructs for `mode-line-format' can be used
2503to display the size of the accessible part of the buffer on the mode
2504line.
2505
2497--- 2506---
2498** Indentation of simple and extended loop forms has been added to the 2507** Indentation of simple and extended loop forms has been added to the
2499cl-indent package. The new user options 2508cl-indent package. The new user options
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 2c76bb9b8f3..ba429ad0423 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
12003-09-08 Lute Kamstra <Lute.Kamstra@cwi.nl>
2
3 * simple.el (size-indication-mode): New.
4 * bindings.el (mode-line-position): Add buffer size indicator.
5
12003-09-04 Mario Lang <mlang@delysid.org> 62003-09-04 Mario Lang <mlang@delysid.org>
2 7
3 * battery.el (battery-linux-proc-acpi): New function. 8 * battery.el (battery-linux-proc-acpi): New function.
diff --git a/lispref/ChangeLog b/lispref/ChangeLog
index 8258aff458e..aae3e864bc0 100644
--- a/lispref/ChangeLog
+++ b/lispref/ChangeLog
@@ -1,3 +1,8 @@
12003-09-08 Lute Kamstra <Lute.Kamstra@cwi.nl>
2
3 * modes.texi (%-Constructs): Document new `%i' and `%I'
4 constructs.
5
12003-09-03 Peter Runestig <peter@runestig.com> 62003-09-03 Peter Runestig <peter@runestig.com>
2 7
3 * makefile.w32-in: New file. 8 * makefile.w32-in: New file.
diff --git a/man/ChangeLog b/man/ChangeLog
index d36ae0f26df..41dcb857c91 100644
--- a/man/ChangeLog
+++ b/man/ChangeLog
@@ -1,3 +1,11 @@
12003-09-08 Lute Kamstra <Lute.Kamstra@cwi.nl>
2
3 * screen.texi (Mode Line): Say that POS comes before LINE.
4 Mention `size-indication-mode'.
5 * display.texi (Optional Mode Line): Document
6 `size-indication-mode'.
7 * basic.texi (Position Info): Mention `size-indication-mode'.
8
12003-09-07 Luc Teirlinck <teirllm@mail.auburn.edu> 92003-09-07 Luc Teirlinck <teirllm@mail.auburn.edu>
2 10
3 * xresources.texi (Resources): Refer to `editres' man page. 11 * xresources.texi (Resources): Refer to `editres' man page.
diff --git a/src/ChangeLog b/src/ChangeLog
index 660e74e5a03..53bfee81eed 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,10 @@
12003-09-08 Lute Kamstra <Lute.Kamstra@cwi.nl>
2
3 * xdisp.c (pint2hrstr): New function.
4 (decode_mode_spec): Add `%i' and `%I' specs.
5 * buffer.c (syms_of_buffer): Document `%i' and `%I' constructs
6 for `mode-line-format'.
7
12003-09-07 Andreas Schwab <schwab@suse.de> 82003-09-07 Andreas Schwab <schwab@suse.de>
2 9
3 * alloc.c: Use long instead of int when casting ABLOCKS_BUSY to 10 * alloc.c: Use long instead of int when casting ABLOCKS_BUSY to