aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman2003-04-06 20:28:28 +0000
committerRichard M. Stallman2003-04-06 20:28:28 +0000
commit64ea14d3bebac74b0fe2989893011c233e38dac1 (patch)
tree227d06e0486354de5fbda95cfd222809f160c61a /src
parent918a23a7d96ac12d9d072a1631a94350f7f4787a (diff)
downloademacs-64ea14d3bebac74b0fe2989893011c233e38dac1.tar.gz
emacs-64ea14d3bebac74b0fe2989893011c233e38dac1.zip
Comment change.
Diffstat (limited to 'src')
-rw-r--r--src/callint.c12
1 files changed, 8 insertions, 4 deletions
diff --git a/src/callint.c b/src/callint.c
index a6b83c6523f..f80f3c62027 100644
--- a/src/callint.c
+++ b/src/callint.c
@@ -174,14 +174,18 @@ check_mark (for_region)
174 Fsignal (Qmark_inactive, Qnil); 174 Fsignal (Qmark_inactive, Qnil);
175} 175}
176 176
177/* If the list of args INPUT was produced with an explicit call to
178 `list', look for elements that were computed with
179 (region-beginning) or (region-end), and put those expressions into
180 VALUES instead of the present values.
181
182 This function doesn't return a value because it modifies elements
183 of VALUES to do its job. */
184
177static void 185static void
178fix_command (input, values) 186fix_command (input, values)
179 Lisp_Object input, values; 187 Lisp_Object input, values;
180{ 188{
181 /* If the list of args was produced with an explicit call to `list',
182 look for elements that were computed with (region-beginning)
183 or (region-end), and put those expressions into VALUES
184 instead of the present values. */
185 if (CONSP (input)) 189 if (CONSP (input))
186 { 190 {
187 Lisp_Object car; 191 Lisp_Object car;