Function: vhdl-line-transpose-next

vhdl-line-transpose-next is an interactive and byte-compiled function defined in vhdl-mode.el.gz.

Signature

(vhdl-line-transpose-next &optional ARG)

Documentation

Interchange this line with next line.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/vhdl-mode.el.gz
(defun vhdl-line-transpose-next (&optional arg)
  "Interchange this line with next line."
  (interactive "p")
  (forward-line 1)
  (transpose-lines (or arg 1))
  (forward-line -1))