aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJim Blandy1991-07-13 21:22:40 +0000
committerJim Blandy1991-07-13 21:22:40 +0000
commite74928fc4babcb5d8e498e62743135d3674dccf6 (patch)
tree10174f0c2c31dc7facc7e35780503c1bd45219f2 /src
parent03e3c30a3b5479049437c0c8d3e2b0bba3fc7a6c (diff)
downloademacs-e74928fc4babcb5d8e498e62743135d3674dccf6.tar.gz
emacs-e74928fc4babcb5d8e498e62743135d3674dccf6.zip
*** empty log message ***
Diffstat (limited to 'src')
-rw-r--r--src/indent.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/indent.c b/src/indent.c
index 9561927167d..de85e1f0d0c 100644
--- a/src/indent.c
+++ b/src/indent.c
@@ -83,6 +83,13 @@ however, ^M is treated as end of line when `selective-display' is t.")
83 return temp; 83 return temp;
84} 84}
85 85
86/* Cancel any recorded value of the horizontal position. */
87
88invalidate_current_column ()
89{
90 last_known_column_point = 0;
91}
92
86int 93int
87current_column () 94current_column ()
88{ 95{