prolog-consult-string
prolog-consult-string is a variable defined in `
prolog.el
'.
Its value is shown
below.
Documentation:
Alist of strings defining predicate for reconsulting.
Some parts of the string are replaced:
`%f' by the name of the consulted file (can be a temporary file)
`%b' by the file name of the buffer to consult
`%m' by the module name and name of the consulted file separated by colon
`%l' by the line offset into the file. This is 0 unless consulting a
region of a buffer, in which case it is the number of lines before
the region.
You can customize this variable.
Value:
((eclipse "[%f].")
(mercury nil)
(sicstus
(eval
(if
(prolog-atleast-version
'(3 . 7))
"prolog:zap_file(%m,%b,consult,%l)." "prolog:zap_file(%m,%b,consult).")))
(swi "[%f].")
(gnu "[%f].")
(t "reconsult(%f)."))