Variable: sentence-end-without-period

sentence-end-without-period is a customizable variable defined in paragraphs.el.gz.

Value

nil

Documentation

Non-nil means a sentence will end without a period.

For example, a sentence in Thai text ends with double space but without a period.

This value is used by the function sentence-end(var)/sentence-end(fun) to construct the regexp describing the end of a sentence, when the value of the variable sentence-end(var)/sentence-end(fun) is nil. See Info node (elisp)Standard Regexps.

View in manual

Probably introduced at or before Emacs version 22.1.

Source Code

;; Defined in /usr/src/emacs/lisp/textmodes/paragraphs.el.gz
(defcustom sentence-end-without-period nil
  "Non-nil means a sentence will end without a period.
For example, a sentence in Thai text ends with double space but
without a period.

This value is used by the function `sentence-end' to construct the
regexp describing the end of a sentence, when the value of the variable
`sentence-end' is nil.  See Info node `(elisp)Standard Regexps'."
  :type 'boolean
  :safe #'booleanp
  :group 'fill)