diff options
author | Pavel Janík <Pavel@Janik.cz> | 2001-10-21 12:13:46 +0000 |
---|---|---|
committer | Pavel Janík <Pavel@Janik.cz> | 2001-10-21 12:13:46 +0000 |
commit | 8c1a1077c0f85d34684a8faa7cfd9e47bab3e610 (patch) | |
tree | 003648ba6c6530f9da222939764b76ee774bb7a3 /src/undo.c | |
parent | dfe45eff10b0f1062fae480db4d1a10a1fe33d40 (diff) | |
download | emacs-8c1a1077c0f85d34684a8faa7cfd9e47bab3e610.tar.gz emacs-8c1a1077c0f85d34684a8faa7cfd9e47bab3e610.tar.bz2 emacs-8c1a1077c0f85d34684a8faa7cfd9e47bab3e610.zip |
Change doc-string comments to `new style' [w/`doc:' keyword].
Diffstat (limited to 'src/undo.c')
-rw-r--r-- | src/undo.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/undo.c b/src/undo.c index bf10de6e502..0c87a599bcd 100644 --- a/src/undo.c +++ b/src/undo.c @@ -257,10 +257,10 @@ record_property_change (beg, length, prop, value, buffer) } DEFUN ("undo-boundary", Fundo_boundary, Sundo_boundary, 0, 0, 0, - "Mark a boundary between units of undo.\n\ -An undo command will stop at this point,\n\ -but another undo command will undo to the previous boundary.") - () + doc: /* Mark a boundary between units of undo. +An undo command will stop at this point, +but another undo command will undo to the previous boundary. */) + () { Lisp_Object tem; if (EQ (current_buffer->undo_list, Qt)) @@ -386,9 +386,9 @@ truncate_undo_list (list, minsize, maxsize) } DEFUN ("primitive-undo", Fprimitive_undo, Sprimitive_undo, 2, 2, 0, - "Undo N records from the front of the list LIST.\n\ -Return what remains of the list.") - (n, list) + doc: /* Undo N records from the front of the list LIST. +Return what remains of the list. */) + (n, list) Lisp_Object n, list; { struct gcpro gcpro1, gcpro2; |