Mercurial > emacs
diff src/cmds.c @ 18239:a01702d67089
(internal_self_insert): Use PT, not point.
| author | Karl Heuer <kwzh@gnu.org> |
|---|---|
| date | Sat, 14 Jun 1997 04:50:37 +0000 |
| parents | a6442e20f768 |
| children | 6897bd6a1c8d |
line wrap: on
line diff
--- a/src/cmds.c Sat Jun 14 04:36:44 1997 +0000 +++ b/src/cmds.c Sat Jun 14 04:50:37 1997 +0000 @@ -413,7 +413,7 @@ del_range (PT, forward_point (1)); else { - int pos = point; + int pos = PT; /* The actual cursor position after the trial of moving to column TARGET_CLM. It is greater than TARGET_CLM if the TARGET_CLM is middle of multi-column
