aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKarl Heuer1997-06-14 04:50:37 +0000
committerKarl Heuer1997-06-14 04:50:37 +0000
commit5bfb66e31d6087ae075cefe90a2e91b50982caca (patch)
treeab47c4b199812d80cca8464c59afde10ad7e17f6
parent5326c1d6879b987a9aa921ab49fda3421b54d18b (diff)
downloademacs-5bfb66e31d6087ae075cefe90a2e91b50982caca.tar.gz
emacs-5bfb66e31d6087ae075cefe90a2e91b50982caca.zip
(internal_self_insert): Use PT, not point.
-rw-r--r--src/cmds.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cmds.c b/src/cmds.c
index 8b51e69de48..00a6e7687f8 100644
--- a/src/cmds.c
+++ b/src/cmds.c
@@ -413,7 +413,7 @@ internal_self_insert (c, noautofill)
413 del_range (PT, forward_point (1)); 413 del_range (PT, forward_point (1));
414 else 414 else
415 { 415 {
416 int pos = point; 416 int pos = PT;
417 /* The actual cursor position after the trial of moving 417 /* The actual cursor position after the trial of moving
418 to column TARGET_CLM. It is greater than TARGET_CLM 418 to column TARGET_CLM. It is greater than TARGET_CLM
419 if the TARGET_CLM is middle of multi-column 419 if the TARGET_CLM is middle of multi-column