]> git.eshelyaron.com Git - emacs.git/commitdiff
(edebug-display-freq-count): Doc fix.
authorRichard M. Stallman <rms@gnu.org>
Mon, 20 Oct 2003 23:46:31 +0000 (23:46 +0000)
committerRichard M. Stallman <rms@gnu.org>
Mon, 20 Oct 2003 23:46:31 +0000 (23:46 +0000)
etc/NEWS
lib-src/ChangeLog
lisp/ChangeLog
lisp/emacs-lisp/edebug.el

index a7442fa635fe1a7f351028b9c49bba09e17da2ae..ad340d675178b620743e6992a6df657b4d82f926 100644 (file)
--- 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.
index cb8071068369998f3c9b990000ef544b920de64a..3e2350c78428fe8525fb32f3c1c8984ac7e05908 100644 (file)
@@ -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  <rms@gnu.org>
 
index f2f954807a120fa1115d71fdb393e6412fd0ae72..83b18d1fbc06eeca351084a13101d3498160728c 100644 (file)
@@ -1,3 +1,15 @@
+2003-10-21  Richard M. Stallman  <rms@gnu.org>
+
+       * 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  <david@dponce.com>
 
        * ruler-mode.el (ruler-mode-left-fringe-cols): Add new optional
index 2f26fce27cbe06b1d32e5d892285f99efc5d3dc5..74ea2f37b227c594ea68969ae394c3a79ab632ad 100644 (file)
@@ -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