Function: woman-mark-horizontal-position
woman-mark-horizontal-position is a byte-compiled function defined in
woman.el.gz.
Signature
(woman-mark-horizontal-position)
Documentation
\kx -- Store current horizontal position in INPUT LINE in register x.
Source Code
;; Defined in /usr/src/emacs/lisp/woman.el.gz
(defun woman-mark-horizontal-position ()
"\\kx -- Store current horizontal position in INPUT LINE in register x."
(while (re-search-forward "\\\\k\\(.\\)" nil t)
(goto-char (match-beginning 0))
(setq woman-registers
(cons (list (match-string 1) (current-column))
woman-registers))
(woman-delete-match 0)))