Function: vhdl-in-quote-p

vhdl-in-quote-p is a byte-compiled function defined in vhdl-mode.el.gz.

Signature

(vhdl-in-quote-p)

Documentation

Check if point is in a quote ('x').

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/vhdl-mode.el.gz
(defun vhdl-in-quote-p ()
  "Check if point is in a quote ('x')."
  (or (and (> (point) (point-min))
	   (< (1+ (point)) (point-max))
	   (= (char-before (point)) ?\')
	   (= (char-after (1+ (point))) ?\'))
      (and (> (1- (point)) (point-min))
	   (< (point) (point-max))
	   (= (char-before (1- (point))) ?\')
	   (= (char-after (point)) ?\'))))