diff options
| author | Karl Heuer | 1996-09-01 19:15:05 +0000 |
|---|---|---|
| committer | Karl Heuer | 1996-09-01 19:15:05 +0000 |
| commit | 6ec8bbd20d14dadb850f993d828b42bb97deba32 (patch) | |
| tree | 19f01d5251cd6d478933a5f562ba985bf5c3b117 /src/callint.c | |
| parent | 7003b258300d0e575da8009e6f017b6c19aabacb (diff) | |
| download | emacs-6ec8bbd20d14dadb850f993d828b42bb97deba32.tar.gz emacs-6ec8bbd20d14dadb850f993d828b42bb97deba32.zip | |
Change all references from point to PT.
Diffstat (limited to 'src/callint.c')
| -rw-r--r-- | src/callint.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/callint.c b/src/callint.c index 14f34f3b5f6..3741a0930d1 100644 --- a/src/callint.c +++ b/src/callint.c | |||
| @@ -606,9 +606,9 @@ Otherwise, this is done only if an arg is read using the minibuffer.") | |||
| 606 | /* visargs[i+1] = Qnil; */ | 606 | /* visargs[i+1] = Qnil; */ |
| 607 | foo = marker_position (current_buffer->mark); | 607 | foo = marker_position (current_buffer->mark); |
| 608 | /* visargs[i] = Qnil; */ | 608 | /* visargs[i] = Qnil; */ |
| 609 | args[i] = point < foo ? point_marker : current_buffer->mark; | 609 | args[i] = PT < foo ? point_marker : current_buffer->mark; |
| 610 | varies[i] = 3; | 610 | varies[i] = 3; |
| 611 | args[++i] = point > foo ? point_marker : current_buffer->mark; | 611 | args[++i] = PT > foo ? point_marker : current_buffer->mark; |
| 612 | varies[i] = 4; | 612 | varies[i] = 4; |
| 613 | break; | 613 | break; |
| 614 | 614 | ||