aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--etc/NEWS27
-rw-r--r--lib-src/ChangeLog4
-rw-r--r--lisp/ChangeLog12
-rw-r--r--lisp/emacs-lisp/edebug.el4
4 files changed, 20 insertions, 27 deletions
diff --git a/etc/NEWS b/etc/NEWS
index a7442fa635..ad340d6751 100644
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -2564,6 +2564,7 @@ indentation of keywords and forms in loop forms.
** Indentation of backquoted forms has been made customizable in the
cl-indent package. See the new user option `lisp-backquote-indentation'.
++++
** Already true in Emacs 21.1, but not emphasized clearly enough:
Multibyte buffers can now faithfully record all 256 character codes
@@ -2579,12 +2580,15 @@ the time it takes to convert the format.
3. For binary files where format conversion would be pointless and
wasteful.
++++
** If text has a `keymap' property, that keymap takes precedence
over minor mode keymaps.
++++
** A hex escape in a string forces the string to be multibyte.
An octal escape makes it unibyte.
++++
** At the end of a command, point moves out from within invisible
text, in the same way it moves out from within text covered by an
image or composition property.
@@ -2595,29 +2599,6 @@ unexpected side-effects since the property applies to everything
(including `goto-char', ...) whereas this new code is only run after
post-command-hook and thus does not care about intermediate states.
-** Only one of the beginning or end of an invisible, intangible region is
-considered an acceptable value for point; which one is determined by
-examining how the invisible/intangible properties are inherited when new
-text is inserted adjacent to them. (The `front-sticky' and `rear-sticky'
-properties control this.)
-
-If the invisible/intangible would be inherited by any text inserted
-before this region, then the position before it is considered
-unacceptable, and point is forced to continue (if moving forwards, to
-the position following the invisible/intangible text; if moving
-backwards, to one position before). If the properties would be
-inherited by any text inserted after, then the position after is
-considered unacceptable, and point is forced to keep moving (if moving
-backwards, to the position preceding the invisible/intangible text; if
-moving forwards, to one position later).
-
-Thus, point can only go to one end of an invisible, intangible region, but
-not the other one. This prevents C-f and C-b from appearing to stand still
-on the screen.
-
-You should not set it up so that both the position before and the position
-after are unacceptable.
-
+++
** field-beginning and field-end now accept an additional optional
argument, LIMIT.
diff --git a/lib-src/ChangeLog b/lib-src/ChangeLog
index cb80710683..3e2350c784 100644
--- a/lib-src/ChangeLog
+++ b/lib-src/ChangeLog
@@ -2,8 +2,8 @@
* emacsclient.c (quote_file_name): Print the result instead of
returning it. Fix the return type accordingly.
- (main): Under --eval, don't fail if left with additional
- arguments after decoding options. Quote file names.
+ (main): With --eval, if no file name, read from stdin.
+ Quote file names.
2003-09-10 Richard M. Stallman <[email protected]>
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index f2f954807a..83b18d1fbc 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,15 @@
+2003-10-21 Richard M. Stallman <[email protected]>
+
+ * emacs-lisp/edebug.el (edebug-display-freq-count): Doc fix.
+
+ * ls-lisp.el (ls-lisp-insert-directory): Arg is now wildcard-regexp.
+ Don't check for foo*/ wildcard form here.
+ (insert-directory): Recognize foo*/ as a wildcard.
+ Separate wildcard-regexp variable from the arg, wildcard.
+
+ * subr.el (add-hook): Correctly detect when make-local-hook was used.
+ (remove-hook): Correctly handle strange cases about local hooks.
+
2003-10-21 David Ponce <[email protected]>
* ruler-mode.el (ruler-mode-left-fringe-cols): Add new optional
diff --git a/lisp/emacs-lisp/edebug.el b/lisp/emacs-lisp/edebug.el
index 2f26fce27c..74ea2f37b2 100644
--- a/lisp/emacs-lisp/edebug.el
+++ b/lisp/emacs-lisp/edebug.el
@@ -4145,8 +4145,8 @@ You must include newlines in FMT to break lines, but one newline is appended."
;;; Frequency count and coverage
(defun edebug-display-freq-count ()
- "Display the frequency count data for each line of the current
-definition. The frequency counts are inserted as comment lines after
+ "Display the frequency count data for each line of the current definition.
+The frequency counts are inserted as comment lines after
each line, and you can undo all insertions with one `undo' command.
The counts are inserted starting under the `(' before an expression