Variable: pascal-separator-keywords

pascal-separator-keywords is a customizable variable defined in pascal.el.gz.

Value

("downto" "else" "mod" "div" "then")

Documentation

Keywords to complete when NOT standing at the first word of a statement.

These are keywords such as downto, else, mod, then. Variables and function names defined within the Pascal program are handled in another way, and should not be added to this list.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/pascal.el.gz
(defcustom pascal-separator-keywords
  '("downto" "else" "mod" "div" "then")
  "Keywords to complete when NOT standing at the first word of a statement.
These are keywords such as downto, else, mod, then.
Variables and function names defined within the Pascal program
are handled in another way, and should not be added to this list."
  :type '(repeat (string :tag "Keyword")))