Function: edt-character
edt-character is an interactive and byte-compiled function defined in
edt.el.gz.
Signature
(edt-character NUM)
Documentation
Move in current direction to next character.
Argument NUM is the number of characters to move.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/emulation/edt.el.gz
;;;
;;; CHAR
;;;
(defun edt-character (num)
"Move in current direction to next character.
Argument NUM is the number of characters to move."
(interactive "p")
(edt-check-prefix num)
(if (equal edt-direction-string edt-forward-string)
(forward-char num)
(backward-char num)))