Variable: sql-input-ring-separator
sql-input-ring-separator is a customizable variable defined in
sql.el.gz.
Value
"\n--\n"
Documentation
Separator between commands in the history file.
If set to "\\n", each line in the history file will be interpreted as one command. Multi-line commands are split into several commands when the input ring is initialized from a history file.
This variable used to initialize comint-input-ring-separator.
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/sql.el.gz
(defcustom sql-input-ring-separator "\n--\n"
"Separator between commands in the history file.
If set to \"\\n\", each line in the history file will be interpreted as
one command. Multi-line commands are split into several commands when
the input ring is initialized from a history file.
This variable used to initialize `comint-input-ring-separator'."
:type 'string)