aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorKarl Heuer1994-10-25 00:45:21 +0000
committerKarl Heuer1994-10-25 00:45:21 +0000
commit961dda3e4eb5a8310c6c0ac852a9ee922d3ec9ba (patch)
treee6966514a1aecdea5b81aab81b736679d6d8d7e0 /src
parentf1b648d6d0a8a9a26a50d077715689430f3bb8a7 (diff)
downloademacs-961dda3e4eb5a8310c6c0ac852a9ee922d3ec9ba.tar.gz
emacs-961dda3e4eb5a8310c6c0ac852a9ee922d3ec9ba.zip
(decode_mode_spec): New spec %c, for current column.
Diffstat (limited to 'src')
-rw-r--r--src/xdisp.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/xdisp.c b/src/xdisp.c
index a024ffa7c56..1ee03170846 100644
--- a/src/xdisp.c
+++ b/src/xdisp.c
@@ -3018,6 +3018,10 @@ decode_mode_spec (w, c, maxwidth)
3018#endif 3018#endif
3019 break; 3019 break;
3020 3020
3021 case 'c':
3022 sprintf (decode_mode_spec_buf, "%d", current_column ());
3023 return decode_mode_spec_buf;
3024
3021 case 'l': 3025 case 'l':
3022 { 3026 {
3023 int startpos = marker_position (w->start); 3027 int startpos = marker_position (w->start);