Variable: pascal-start-keywords

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

Value

("begin" "end" "function" "procedure" "repeat" "until" "while" "read" "readln" "reset" "rewrite" "write" "writeln")

Documentation

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

These are keywords such as begin, repeat, until, readln. The procedures and variables 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-start-keywords
  '("begin" "end" "function" "procedure" "repeat" "until" "while"
    "read" "readln" "reset" "rewrite" "write" "writeln")
  "Keywords to complete when standing at the first word of a statement.
These are keywords such as begin, repeat, until, readln.
The procedures and variables defined within the Pascal program
are handled in another way, and should not be added to this list."
  :type '(repeat (string :tag "Keyword")))