Variable: pascal-type-keywords
pascal-type-keywords is a customizable variable defined in
pascal.el.gz.
Value
("array" "file" "packed" "char" "integer" "real" "string" "record")
Documentation
Keywords for types used when completing a word in a declaration or parmlist.
These include integer, real, char, etc. The types 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-type-keywords
'("array" "file" "packed" "char" "integer" "real" "string" "record")
"Keywords for types used when completing a word in a declaration or parmlist.
These include integer, real, char, etc.
The types defined within the Pascal program
are handled in another way, and should not be added to this list."
:type '(repeat (string :tag "Keyword")))