Function: vhdl-line-transpose-previous
vhdl-line-transpose-previous is an interactive and byte-compiled
function defined in vhdl-mode.el.gz.
Signature
(vhdl-line-transpose-previous &optional ARG)
Documentation
Interchange this line with previous line.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/vhdl-mode.el.gz
(defun vhdl-line-transpose-previous (&optional arg)
"Interchange this line with previous line."
(interactive "p")
(forward-line 1)
(transpose-lines (- 0 (or arg 0)))
(forward-line -1))