Function: vhdl-delete-indentation

vhdl-delete-indentation is an interactive and byte-compiled function defined in vhdl-mode.el.gz.

Signature

(vhdl-delete-indentation)

Documentation

Join lines. That is, call delete-indentation with fill-prefix so that it works within comments too.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/vhdl-mode.el.gz
(defun vhdl-delete-indentation ()
  "Join lines.  That is, call `delete-indentation' with `fill-prefix' so that
it works within comments too."
  (interactive)
  (let ((fill-prefix "-- "))
    (delete-indentation)))