aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGerd Moellmann1999-10-30 21:12:39 +0000
committerGerd Moellmann1999-10-30 21:12:39 +0000
commit2bdedac1008b386f70f347db7424a3c6fcceef66 (patch)
tree3d03b2df0ccd93aade5ca2624db8349e6bccd726
parent07dc417520f8a433fbe32bfb8ec753d8a3302819 (diff)
downloademacs-2bdedac1008b386f70f347db7424a3c6fcceef66.tar.gz
emacs-2bdedac1008b386f70f347db7424a3c6fcceef66.zip
*** empty log message ***
-rw-r--r--lisp/ChangeLog49
-rw-r--r--lispref/debugging.texi2
-rw-r--r--lispref/edebug.texi2
-rw-r--r--lispref/sequences.texi4
4 files changed, 24 insertions, 33 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 1bd71aec55f..7af85674699 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -8,36 +8,27 @@
8 8
91999-10-30 Rajesh Vaidheeswarran <rv@dsmit.com> 91999-10-30 Rajesh Vaidheeswarran <rv@dsmit.com>
10 10
11 * whitespace.el (whitespace-version): Update to 2.6 11 * whitespace.el: Test for existence of `defcustom' and `defgroup'
12 12 using fboundp instead of assuming that these are not present in
13 * whitespace.el (whitespace-display-in-modeline): Add custom 13 particular flavors of emacs.
14 variable to control displaying the whitespace errors on the 14 (whitespace-version): Update to 2.8
15 modeline based on suggestion from <klaus.berndl@sdm.de> 15 (whitespace-display-in-modeline): Add custom variable to control
16 16 displaying the whitespace errors on the modeline based on
17 * whitespace.el (whitespace-buffer): Now returns `t' if unclean 17 suggestion from <klaus.berndl@sdm.de>
18 and `nil' if clean, to enable using as a hook function, as 18 (whitespace-buffer): Now returns `t' if unclean and `nil' if
19 suggested by Puneet Goel <puneet@computer.org> 19 clean, to enable using as a hook function, as suggested by Puneet
20 20 Goel <puneet@computer.org>
21 * whitespace.el (whitespace-buffer): Fix a subtle bug that cleaned 21 (whitespace-buffer): Fix a subtle bug that cleaned up only if
22 up only if quiet was not set, even with whitespace-auto-cleanup set. 22 quiet was not set, even with whitespace-auto-cleanup set.
23 23 (whitespace-mode-line): Now uses less modeline real estate and
24 * whitespace.el (whitespace-mode-line): Now uses less modeline 24 shows whitespaces as W:<x>!<y> where <x> is any type of whitespace
25 real estate and shows whitespaces as W:<x>!<y> where <x> is any 25 which is present in the file, and <y> is any type of whitespace
26 type of whitespace which is present in the file, and <y> is any 26 whose check has been suppressed by setting
27 type of whitespace whose check has been suppressed by setting
28 `whitespace-check-<whitespace-type>' to nil. 27 `whitespace-check-<whitespace-type>' to nil.
29 28 (whitespace-unchecked-whitespaces): New function to return the
30 * whitespace.el (whitespace-unchecked-whitespaces): New function 29 list of whitespaces for whom checks have been suppressed.
31 to return the list of whitespaces for whom checks have been 30 (whitespace-display-unchecked-whitespaces): Renamed to
32 suppressed. 31 `whitespace-update-modeline' to reflect its functionality.
33
34 * whitespace.el (whitespace-display-unchecked-whitespaces):
35 Renamed to `whitespace-update-modeline' to reflect its
36 functionality.
37
381999-09-30 Rajesh Vaidheeswarran <rv@dsmit.com>
39
40 * whitespace.el (whitespace-version): Update to 2.5
41 32
421999-10-30 Gerd Moellmann <gerd@gnu.org> 331999-10-30 Gerd Moellmann <gerd@gnu.org>
43 34
diff --git a/lispref/debugging.texi b/lispref/debugging.texi
index 62e78263ff8..bb719ee99a6 100644
--- a/lispref/debugging.texi
+++ b/lispref/debugging.texi
@@ -732,7 +732,7 @@ found the discrepancy, undo the @kbd{C-M-q} with @kbd{C-_}, since the
732old indentation is probably appropriate to the intended parentheses. 732old indentation is probably appropriate to the intended parentheses.
733 733
734 After you think you have fixed the problem, use @kbd{C-M-q} again. If 734 After you think you have fixed the problem, use @kbd{C-M-q} again. If
735the old indentation actually fit the intended nesting of parentheses, 735the old indentation actually fits the intended nesting of parentheses,
736and you have put back those parentheses, @kbd{C-M-q} should not change 736and you have put back those parentheses, @kbd{C-M-q} should not change
737anything. 737anything.
738 738
diff --git a/lispref/edebug.texi b/lispref/edebug.texi
index d06275bb9f7..6f7b3af59f4 100644
--- a/lispref/edebug.texi
+++ b/lispref/edebug.texi
@@ -97,7 +97,7 @@ which stops execution. @xref{Edebug Execution Modes}.
97 97
98 Within Edebug, you normally view an Emacs buffer showing the source of 98 Within Edebug, you normally view an Emacs buffer showing the source of
99the Lisp code you are debugging. This is referred to as the @dfn{source 99the Lisp code you are debugging. This is referred to as the @dfn{source
100code buffer}, and is is temporarily read-only. 100code buffer}, and it is temporarily read-only.
101 101
102 An arrow at the left margin indicates the line where the function is 102 An arrow at the left margin indicates the line where the function is
103executing. Point initially shows where within the line the function is 103executing. Point initially shows where within the line the function is
diff --git a/lispref/sequences.texi b/lispref/sequences.texi
index 0b9e2901977..dd64c9af269 100644
--- a/lispref/sequences.texi
+++ b/lispref/sequences.texi
@@ -221,8 +221,8 @@ in the list.
221 Emacs defines four types of array, all one-dimensional: @dfn{strings}, 221 Emacs defines four types of array, all one-dimensional: @dfn{strings},
222@dfn{vectors}, @dfn{bool-vectors} and @dfn{char-tables}. A vector is a 222@dfn{vectors}, @dfn{bool-vectors} and @dfn{char-tables}. A vector is a
223general array; its elements can be any Lisp objects. A string is a 223general array; its elements can be any Lisp objects. A string is a
224specialized array; its elements must be characters (i.e., integers 224specialized array; its elements must be characters. Each type of array
225between 0 and 255). Each type of array has its own read syntax. 225has its own read syntax.
226@xref{String Type}, and @ref{Vector Type}. 226@xref{String Type}, and @ref{Vector Type}.
227 227
228 All four kinds of array share these characteristics: 228 All four kinds of array share these characteristics: