# HG changeset patch # User Richard M. Stallman # Date 1107689051 0 # Node ID c48813f32e6b2ced32afeb320a346f619e4ba568 # Parent d9e761d51f9803721ef7d92ec849d84811570890 *** empty log message *** diff -r d9e761d51f98 -r c48813f32e6b admin/FOR-RELEASE --- a/admin/FOR-RELEASE Sun Feb 06 11:23:38 2005 +0000 +++ b/admin/FOR-RELEASE Sun Feb 06 11:24:11 2005 +0000 @@ -178,26 +178,26 @@ SECTION READERS ----------------------------- -man/abbrevs.texi +man/abbrevs.texi Chong Yidong man/anti.texi -man/basic.texi "Luc Teirlinck" +man/basic.texi "Luc Teirlinck" Chong Yidong man/buffers.texi "Luc Teirlinck" Chong Yidong man/building.texi "Ted Zlatanov" man/calendar.texi Joakim Verona -man/cmdargs.texi +man/cmdargs.texi Chong Yidong man/commands.texi "Luc Teirlinck" -man/custom.texi +man/custom.texi Chong Yidong man/dired.texi man/display.texi "Luc Teirlinck" man/emacs.texi "Luc Teirlinck" -man/entering.texi "Luc Teirlinck" +man/entering.texi "Luc Teirlinck" Chong Yidong man/files.texi "Luc Teirlinck" Chong Yidong man/fixit.texi "Luc Teirlinck" man/frames.texi "Luc Teirlinck" Chong Yidong man/glossary.texi man/help.texi "Luc Teirlinck" man/indent.texi "Luc Teirlinck" -man/killing.texi "Luc Teirlinck" +man/killing.texi "Luc Teirlinck" Chong Yidong man/kmacro.texi "Luc Teirlinck" man/macos.texi man/maintaining.texi @@ -210,7 +210,7 @@ man/m-x.texi "Luc Teirlinck" man/picture.texi Joakim Verona man/programs.texi "Stephen Eglen" -man/regs.texi "Luc Teirlinck" +man/regs.texi "Luc Teirlinck" Chong Yidong man/rmail.texi man/screen.texi "Luc Teirlinck" man/search.texi "Luc Teirlinck" @@ -261,17 +261,17 @@ lispref/maps.texi lispref/markers.texi "Luc Teirlinck" lispref/minibuf.texi "Luc Teirlinck" -lispref/modes.texi +lispref/modes.texi Chong Yidong lispref/nonascii.texi "Luc Teirlinck" lispref/numbers.texi "Luc Teirlinck" lispref/objects.texi "Luc Teirlinck" lispref/os.texi "Luc Teirlinck" -lispref/positions.texi "Luc Teirlinck" +lispref/positions.texi "Luc Teirlinck" Chong Yidong lispref/processes.texi lispref/searching.texi "Luc Teirlinck" lispref/sequences.texi "Luc Teirlinck" lispref/streams.texi "Luc Teirlinck" -lispref/strings.texi "Luc Teirlinck" +lispref/strings.texi "Luc Teirlinck" Chong Yidong lispref/symbols.texi "Luc Teirlinck" lispref/syntax.texi "Luc Teirlinck" lispref/text.texi Chong Yidong diff -r d9e761d51f98 -r c48813f32e6b etc/ChangeLog --- a/etc/ChangeLog Sun Feb 06 11:23:38 2005 +0000 +++ b/etc/ChangeLog Sun Feb 06 11:24:11 2005 +0000 @@ -1,3 +1,7 @@ +2005-02-06 Richard M. Stallman + + * DEBUG: Minor clarification. + 2005-02-05 Frederik Fouvry * emacs.bash: Update the name of the socket of the Emacs server. diff -r d9e761d51f98 -r c48813f32e6b etc/NEWS --- a/etc/NEWS Sun Feb 06 11:23:38 2005 +0000 +++ b/etc/NEWS Sun Feb 06 11:24:11 2005 +0000 @@ -2041,8 +2041,11 @@ +++ ** You can now customize fill-nobreak-predicate to control where -filling can break lines. We provide two sample predicates, -fill-single-word-nobreak-p and fill-french-nobreak-p. +filling can break lines. The value is now normally a list of +functions, but it can also be a single function, for compatibility. + +We provide two sample predicates, fill-single-word-nobreak-p and +fill-french-nobreak-p, for use in the value of fill-nobreak-predicate. +++ ** New user option `add-log-always-start-new-record'. diff -r d9e761d51f98 -r c48813f32e6b lisp/ChangeLog --- a/lisp/ChangeLog Sun Feb 06 11:23:38 2005 +0000 +++ b/lisp/ChangeLog Sun Feb 06 11:24:11 2005 +0000 @@ -1,3 +1,7 @@ +2005-02-06 Richard M. Stallman + + * emacs-lisp/lisp.el (buffer-end): Doc fix. + 2005-02-05 Arne_J,Ax(Brgensen (tiny change) * net/ldap.el (ldap-search-internal): Support attributes with diff -r d9e761d51f98 -r c48813f32e6b lispref/ChangeLog --- a/lispref/ChangeLog Sun Feb 06 11:23:38 2005 +0000 +++ b/lispref/ChangeLog Sun Feb 06 11:24:11 2005 +0000 @@ -1,3 +1,31 @@ +2005-02-06 Richard M. Stallman + + * text.texi (Margins): fill-nobreak-predicate can be one function. + + * strings.texi (Modifying Strings): clear-string can make unibyte. + (Formatting Strings): format gives error if values missing. + + * positions.texi (Character Motion): Mention default arg + for forward-char. backward-char refers to forward-char. + (Word Motion): Mention default arg for forward-word. + (Buffer End Motion): Mention default arg for beginning-of-buffer. + Simplify end-of-buffer. + (Text Lines): Mention default arg for forward-line. + (List Motion): Mention default arg for beginning/end-of-defun. + (Skipping Characters): Minor fixes in explaining character-set. + + * modes.texi (Major Mode Conventions): Mention "system abbrevs". + Mode inheritance applies only when default-major-mode is nil. + Clarifications. + (Example Major Modes): Update Text mode and Lisp mode examples. + (Minor Mode Conventions): Mention define-minor-mode at top. + (Defining Minor Modes): In Hungry example, don't define C-M-DEL. + (Mode Line Format): Update mode line face display info. + (Properties in Mode): Mention effect of risky vars. + (Imenu): Define imenu-add-to-menubar. + (Font Lock Mode): Add descriptions to menu lines. + (Faces for Font Lock): Add font-lock-doc-face. + 2005-02-05 Lute Kamstra * text.texi (Maintaining Undo): Remove obsolete function. diff -r d9e761d51f98 -r c48813f32e6b man/ChangeLog --- a/man/ChangeLog Sun Feb 06 11:23:38 2005 +0000 +++ b/man/ChangeLog Sun Feb 06 11:24:11 2005 +0000 @@ -1,3 +1,43 @@ +2005-02-06 Richard M. Stallman + + * regs.texi (Registers): Registers can hold numbers, too. + + * killing.texi (Other Kill Commands): Cleanup. + Delete redundant explanation of kill in read-only buffer. + (Yanking): Mention term "copying". + (Accumulating Text): Fix typo. + + * entering.texi (Entering Emacs): Update rationale at start. + (Exiting): Treat iconifying on a par with suspension. + + * custom.texi (Minor Modes): Fix typo. + (Easy Customization): Fix menu style. + (Variables): Add xref. + (Examining): Setting for future sessions works through .emacs. + (Keymaps): "Text terminals", not "Many". + (Init Rebinding): Explain \C-. Show example of \M-. + Fix minor wording errors. + (Function Keys): Explain vector syntax just once. + (Named ASCII Chars): Clarify history of TAB/C-i connection. + (Init File): Mention .emacs.d directory. + (Init Examples): Add xref. + (Find Init): Mention .emacs.d directory. + + * cmdargs.texi (Emacs Invocation): +LINENUM is also an option. + (Action Arguments): Explain which kinds of -l args are found how. + (Initial Options): --batch does not inhibit site-start. + Add xrefs. + (Command Example): Use --batch, not -batch. + + * basic.texi (Inserting Text): Cleanup wording. + (Moving Point): Doc PRIOR, PAGEUP, NEXT, PAGEDOWN more systematically. + C-n is not error at end of buffer. + (Undo): Doc C-/ like C-_. Add xrefs. + (Arguments): META key may be labeled ALT. + Peculiar arg meanings are explained in doc strings. + + * abbrevs.texi (Expanding Abbrevs): Clarify. + 2005-02-05 Eli Zaretskii * frames.texi (Frame Parameters): Add an xref to the description diff -r d9e761d51f98 -r c48813f32e6b src/ChangeLog --- a/src/ChangeLog Sun Feb 06 11:23:38 2005 +0000 +++ b/src/ChangeLog Sun Feb 06 11:24:11 2005 +0000 @@ -1,3 +1,9 @@ +2005-02-06 Richard M. Stallman + + * eval.c (Frun_hook_with_args) + (Frun_hook_with_args_until_success) + (Frun_hook_with_args_until_failure): Doc fixes. + 2005-02-05 Andreas Schwab * sysdep.c (sys_subshell): Properly terminate execlp argument