\f
* Changes in Emacs 26.1
+---
+The group 'wp', whose label was "text", is now deprecated.
+Use the new group 'text', which inherits from 'wp', instead.
+
+++
** The new function 'call-shell-region' executes a command in an
inferior shell with the buffer region as input.
:group 'emacs)
(defgroup wp nil
- "Support for editing text files."
- :tag "Text"
+ "Support for editing text files.
+Use group `text' for this instead. This group is deprecated."
:group 'emacs)
+(defgroup text nil
+ "Support for editing text files."
+ :group 'emacs
+ ;; Inherit from deprecated `wp' for compatibility, for now.
+ :group 'wp)
+
(defgroup data nil
"Support for editing binary data files."
:group 'emacs)
:link '(custom-manual "(emacs)Emulation")
:group 'editing)
-(defgroup outlines nil
- "Support for hierarchical outlining."
- :group 'wp)
-
(defgroup external nil
"Interfacing to external utilities."
:group 'emacs)
(defgroup tex nil
"Code related to the TeX formatter."
:link '(custom-group-link :tag "Font Lock Faces group" font-lock-faces)
- :group 'wp)
+ :group 'text)
(defgroup faces nil
"Support for multiple fonts."
"Prettify columns."
:link '(emacs-library-link :tag "Source Lisp File" "delim-col.el")
:prefix "delimit-columns-"
- :group 'wp)
+ :group 'text)
(defcustom delimit-columns-str-before ""
"Specify a string to be inserted before all columns."
(defgroup lpr nil
"Print Emacs buffer on line printer."
- :group 'wp)
+ :group 'text)
;;;###autoload
(defgroup relax-ng nil
"Validation of XML using RELAX NG."
- :group 'wp
+ :group 'text
:group 'nxml
:group 'languages)
(defgroup outlines nil
"Support for hierarchical outlining."
:prefix "outline-"
- :group 'wp)
+ :group 'text)
(defvar outline-regexp "[*\^L]+"
"Regular expression to match the beginning of a heading.
:link '(emacs-library-link :tag "Source Lisp File" "printing.el")
:prefix "pr-"
:version "22.1"
- :group 'wp
+ :group 'text
:group 'postscript)
"Translate an EBNF to a syntactic chart on PostScript."
:prefix "ebnf-"
:version "20"
- :group 'wp
+ :group 'text
:group 'postscript)
:link '(emacs-library-link :tag "Source Lisp File" "ps-print.el")
:prefix "ps-"
:version "20"
- :group 'wp
+ :group 'text
:group 'postscript)
(defgroup ps-print-horizontal nil
"Major mode for editing bib files."
:prefix "bib-"
:group 'external
- :group 'wp)
+ :group 'text)
(defcustom bib-file "~/my-bibliography.bib"
"Default name of file used by `addbib'."
(defgroup enriched nil
"Read and save files in text/enriched format."
- :group 'wp)
+ :group 'text)
(defcustom enriched-verbose t
"If non-nil, give status messages when reading and writing files."
(defgroup nroff nil
"Nroff mode."
:link '(custom-group-link :tag "Font Lock Faces group" font-lock-faces)
- :group 'wp
+ :group 'text
:prefix "nroff-")
(defgroup picture nil
"Editing text-based pictures (\"ASCII art\")."
:prefix "picture-"
- :group 'wp)
+ :group 'text)
(defcustom picture-rectangle-ctl ?+
"Character `picture-draw-rectangle' uses for top left corners."
(defgroup refbib nil
"Convert refer-style references to ones usable by Latex bib."
:prefix "r2b-"
- :group 'wp)
+ :group 'text)
(defcustom r2b-trace-on nil
"Non-nil means trace conversion."
(defgroup refer nil
"Look up references in bibliography files."
:prefix "refer-"
- :group 'wp)
+ :group 'text)
(defcustom refer-bib-directory nil
"Directory, or list of directories, to search for \\.bib files.
;; Initialize customization
(defgroup rst nil "Support for reStructuredText documents."
- :group 'wp
+ :group 'text
:version "23.1"
:link '(url-link "http://docutils.sourceforge.net/rst.html"))
"Text based table manipulation utilities."
:tag "Table"
:prefix "table-"
- :group 'wp
+ :group 'text
:version "22.1")
(defgroup table-hooks nil
"Normal hook run when entering Text mode and many related modes."
:type 'hook
:options '(turn-on-auto-fill turn-on-flyspell)
- :group 'wp)
+ :group 'text)
(defvar text-mode-variant nil
"Non-nil if this buffer's major mode is a variant of Text mode.
(defgroup tildify nil
"Add hard spaces or other text fragments to text buffers."
:version "21.1"
- :group 'wp)
+ :group 'text)
(defcustom tildify-pattern
"\\(?:[,:;(][ \t]*[a]\\|\\<[AIKOSUVZikosuvz]\\)\\([ \t]+\\|[ \t]*\n[ \t]*\\)\\(?:\\w\\|[([{\\]\\|<[a-zA-Z]\\)"
"Peruse file or buffer without editing."
:link '(function-link view-mode)
:link '(custom-manual "(emacs)Misc File Ops")
- :group 'wp)
+ :group 'text)
(defcustom view-highlight-face 'highlight
"The face used for highlighting the match found by View mode search."