emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] trunk r113877: * src/marker.c (set_marker): Reformat docum


From: Xue Fuqiao
Subject: [Emacs-diffs] trunk r113877: * src/marker.c (set_marker): Reformat documentation.
Date: Wed, 14 Aug 2013 13:58:24 +0000
User-agent: Bazaar (2.6b2)

------------------------------------------------------------
revno: 113877
revision-id: address@hidden
parent: address@hidden
committer: Xue Fuqiao <address@hidden>
branch nick: trunk
timestamp: Wed 2013-08-14 21:58:25 +0800
message:
  * src/marker.c (set_marker): Reformat documentation.
modified:
  doc/lispref/markers.texi       
markers.texi-20091113204419-o5vbwnq5f7feedwu-6198
  doc/lispref/positions.texi     
positions.texi-20091113204419-o5vbwnq5f7feedwu-6206
  src/ChangeLog                  changelog-20091113204419-o5vbwnq5f7feedwu-1438
  src/marker.c                   marker.c-20091113204419-o5vbwnq5f7feedwu-156
=== modified file 'doc/lispref/markers.texi'
--- a/doc/lispref/markers.texi  2013-01-01 09:11:05 +0000
+++ b/doc/lispref/markers.texi  2013-08-14 13:58:25 +0000
@@ -279,6 +279,8 @@
 This function returns the buffer that @var{marker} points into, or
 @code{nil} if it points nowhere.
 
address@hidden FIXME: The `buffer' argument of `set-marker' already defaults to
address@hidden the current buffer, why use `(current-buffer)' explicitly here?
 @example
 @group
 (setq m (make-marker))
@@ -384,6 +386,7 @@
 @node The Mark
 @section The Mark
 @cindex mark, the
address@hidden @cindex the mark?
 @cindex mark ring
 
   Each buffer has a special marker, which is designated @dfn{the

=== modified file 'doc/lispref/positions.texi'
--- a/doc/lispref/positions.texi        2013-08-13 14:26:39 +0000
+++ b/doc/lispref/positions.texi        2013-08-14 13:58:25 +0000
@@ -805,7 +805,7 @@
 buffer, use @code{save-current-buffer} or @code{with-current-buffer}
 instead (@pxref{Current Buffer}).  If you need to save or restore
 window configurations, see the forms described in @ref{Window
-Configurations} and in @ref{Frame Configurations}.
+Configurations} and in @ref{Frame Configurations}. @c frameset?
 
 @defspec save-excursion address@hidden
 @cindex mark excursion

=== modified file 'src/ChangeLog'
--- a/src/ChangeLog     2013-08-14 13:50:03 +0000
+++ b/src/ChangeLog     2013-08-14 13:58:25 +0000
@@ -6,6 +6,10 @@
 
        * decompress.c (unwind_decompress): Always restore point.
 
+2013-08-14  Xue Fuqiao  <address@hidden>
+
+       * marker.c (set_marker): Reformat documentation.
+
 2013-08-14  Paul Eggert  <address@hidden>
 
        * xdisp.c (cursor_type_changed): Now static.

=== modified file 'src/marker.c'
--- a/src/marker.c      2013-06-17 06:03:19 +0000
+++ b/src/marker.c      2013-08-14 13:58:25 +0000
@@ -534,9 +534,9 @@
 }
 
 DEFUN ("set-marker", Fset_marker, Sset_marker, 2, 3, 0,
-       doc: /* Position MARKER before character number POSITION in BUFFER,
-which defaults to the current buffer.  If POSITION is nil,
-makes marker point nowhere so it no longer slows down
+       doc: /* Position MARKER before character number POSITION in BUFFER.
+If BUFFER is omitted or nil, it defaults to the current buffer.  If
+POSITION is nil, makes marker point nowhere so it no longer slows down
 editing in any buffer.  Returns MARKER.  */)
   (Lisp_Object marker, Lisp_Object position, Lisp_Object buffer)
 {


reply via email to

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