Function: vhdl-match-string-downcase

vhdl-match-string-downcase is a byte-compiled function defined in vhdl-mode.el.gz.

Signature

(vhdl-match-string-downcase NUM &optional STRING)

Documentation

Like match-string-no-properties with down-casing.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/vhdl-mode.el.gz
(defun vhdl-match-string-downcase (num &optional string)
  "Like `match-string-no-properties' with down-casing."
  (let ((match (match-string-no-properties num string)))
    (and match (downcase match))))