diff options
author | Karl Heuer <kwzh@gnu.org> | 1996-09-01 19:15:05 +0000 |
---|---|---|
committer | Karl Heuer <kwzh@gnu.org> | 1996-09-01 19:15:05 +0000 |
commit | 6ec8bbd20d14dadb850f993d828b42bb97deba32 (patch) | |
tree | 19f01d5251cd6d478933a5f562ba985bf5c3b117 /src/callint.c | |
parent | 7003b258300d0e575da8009e6f017b6c19aabacb (diff) | |
download | emacs-6ec8bbd20d14dadb850f993d828b42bb97deba32.tar.gz |
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.") /* visargs[i+1] = Qnil; */ foo = marker_position (current_buffer->mark); /* visargs[i] = Qnil; */ - args[i] = point < foo ? point_marker : current_buffer->mark; + args[i] = PT < foo ? point_marker : current_buffer->mark; varies[i] = 3; - args[++i] = point > foo ? point_marker : current_buffer->mark; + args[++i] = PT > foo ? point_marker : current_buffer->mark; varies[i] = 4; break; |