Variable: prolog-eof-string
prolog-eof-string is a customizable variable defined in prolog.el.gz.
Value
"end_of_file.\n"
Documentation
String or alist of strings that represent end of file for prolog.
If nil, send actual operating system end of file.
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/prolog.el.gz
(defcustom prolog-eof-string "end_of_file.\n"
"String or alist of strings that represent end of file for prolog.
If nil, send actual operating system end of file."
:group 'prolog-inferior
:type '(choice string
(const nil)
(alist :key-type (choice symbol sexp)
:value-type (group (choice string (const nil) sexp))))
:risky t)