Function: artist-current-column

artist-current-column is a byte-compiled function defined in artist.el.gz.

Signature

(artist-current-column)

Documentation

Return point's current column.

Source Code

;; Defined in /usr/src/emacs/lisp/textmodes/artist.el.gz
;; Routines that deal with the buffer
;;
;; artist-current-line			get line number (top of buffer is 0)
;;
;; artist-move-to-xy			move to (x,y) (0,0) is beg-of-buffer
;;
;; artist-get-char-at-xy		get char in at (x,y)
;;
;; artist-replace-char			overwrite (replace) char at point
;; artist-replace-chars			overwrite (replace) chars at point
;;

(defsubst artist-current-column ()
  "Return point's current column."
  (current-column))