emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] trunk r113933: * doc/emacs/text.texi (Sorting): Fix indent


From: Xue Fuqiao
Subject: [Emacs-diffs] trunk r113933: * doc/emacs/text.texi (Sorting): Fix indentation.
Date: Sat, 17 Aug 2013 08:06:13 +0000
User-agent: Bazaar (2.6b2)

------------------------------------------------------------
revno: 113933
revision-id: address@hidden
parent: address@hidden
committer: Xue Fuqiao <address@hidden>
branch nick: trunk
timestamp: Sat 2013-08-17 16:04:31 +0800
message:
  * doc/emacs/text.texi (Sorting): Fix indentation.
modified:
  doc/emacs/glossary.texi        
glossary.texi-20091113204419-o5vbwnq5f7feedwu-6253
  doc/lispref/ChangeLog          changelog-20091113204419-o5vbwnq5f7feedwu-6155
  doc/lispref/text.texi          text.texi-20091113204419-o5vbwnq5f7feedwu-6215
=== modified file 'doc/emacs/glossary.texi'
--- a/doc/emacs/glossary.texi   2013-07-28 22:48:15 +0000
+++ b/doc/emacs/glossary.texi   2013-08-17 08:04:31 +0000
@@ -873,6 +873,7 @@
 which configures Emacs for editing a certain sort of text.  Ideally,
 each programming language has its own major mode.  @xref{Major Modes}.
 
address@hidden FIXME: Mention margins for filling?
 @item Margin
 The space between the usable part of a window (including the
 fringe) and the window edge.

=== modified file 'doc/lispref/ChangeLog'
--- a/doc/lispref/ChangeLog     2013-08-17 04:31:22 +0000
+++ b/doc/lispref/ChangeLog     2013-08-17 08:04:31 +0000
@@ -3,6 +3,7 @@
        * text.texi (Maintaining Undo): Mention interactive call of
        buffer-disable-undo.
        (Filling): Add cross-reference for hard newlines.
+       (Sorting): Fix indentation.
 
 2013-08-16  Xue Fuqiao  <address@hidden>
 

=== modified file 'doc/lispref/text.texi'
--- a/doc/lispref/text.texi     2013-08-17 04:31:22 +0000
+++ b/doc/lispref/text.texi     2013-08-17 08:04:31 +0000
@@ -1809,6 +1809,7 @@
 @cindex filling, automatic
 @cindex Auto Fill mode
 
address@hidden FIXME: I don't think any of the variables below is a/an 
normal/abnormal hook.
   Auto Fill mode is a minor mode that fills lines automatically as text
 is inserted.  This section describes the hook used by Auto Fill mode.
 For a description of functions that you can call explicitly to fill and
@@ -1950,10 +1951,10 @@
 @group
 (sort-subr reverse
            (function
-             (lambda ()
-               (while (and (not (eobp))
-                      (looking-at paragraph-separate))
-                 (forward-line 1))))
+            (lambda ()
+              (while (and (not (eobp))
+                          (looking-at paragraph-separate))
+                (forward-line 1))))
            'forward-paragraph)
 @end group
 @end example


reply via email to

[Prev in Thread] Current Thread [Next in Thread]