]> git.eshelyaron.com Git - emacs.git/commitdiff
Comment change.
authorRichard M. Stallman <rms@gnu.org>
Sun, 6 Apr 2003 20:28:28 +0000 (20:28 +0000)
committerRichard M. Stallman <rms@gnu.org>
Sun, 6 Apr 2003 20:28:28 +0000 (20:28 +0000)
src/callint.c

index a6b83c6523fa5d662344a3b7c4814e8f862653ff..f80f3c620274ae4c29331fc0b817c74cbcb98872 100644 (file)
@@ -174,14 +174,18 @@ check_mark (for_region)
     Fsignal (Qmark_inactive, Qnil);
 }
 
+/* If the list of args INPUT was produced with an explicit call to
+   `list', look for elements that were computed with
+   (region-beginning) or (region-end), and put those expressions into
+   VALUES instead of the present values.
+
+   This function doesn't return a value because it modifies elements
+   of VALUES to do its job.  */
+
 static void
 fix_command (input, values)
      Lisp_Object input, values;
 {
-  /* If the list of args was produced with an explicit call to `list',
-     look for elements that were computed with (region-beginning)
-     or (region-end), and put those expressions into VALUES
-     instead of the present values.  */
   if (CONSP (input))
     {
       Lisp_Object car;