Variable: octave-reserved-words
octave-reserved-words is a variable defined in octave.el.gz.
Value
("otherwise" "case" "elseif" "else" "unwind_protect_cleanup" "catch"
"do" "for" "parfor" "while" "if" "switch" "function" "enumeration"
"events" "methods" "properties" "classdef" "spmd" "try"
"unwind_protect" "until" "end_try_catch" "end_unwind_protect"
"endfor" "endparfor" "endwhile" "endif" "endswitch" "endfunction"
"endenumeration" "endevents" "endmethods" "endproperties"
"endclassdef" "endspmd" "global" "persistent" "break" "continue"
"return" "end")
Documentation
Reserved words in Octave.
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/octave.el.gz
(defvar octave-reserved-words
(delq nil
(mapcar (lambda (x)
(setq x (car x))
(and (stringp x) (string-match "\\`[[:alpha:]]" x) x))
octave-smie-grammar))
"Reserved words in Octave.")