mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2024-11-24 07:20:37 +00:00
(defgroup ispell): Arrange that definition starts at beginning of
line.
This commit is contained in:
parent
23179a73c3
commit
87a609d3fb
@ -191,10 +191,13 @@
|
||||
`(defvar ,symbol ,value ,doc))))
|
||||
|
||||
(eval-when-compile
|
||||
(if (fboundp 'defgroup)
|
||||
(defgroup ispell nil
|
||||
"User variables for emacs ispell interface."
|
||||
:group 'applications)))
|
||||
(if (not (fboundp 'defgroup))
|
||||
(defmacro defgroup (&rest args)
|
||||
"Empty replacement for defgroup when not supplied.")))
|
||||
|
||||
(defgroup ispell nil
|
||||
"User variables for emacs ispell interface."
|
||||
:group 'applications)
|
||||
|
||||
(if (not (fboundp 'buffer-substring-no-properties))
|
||||
(defun buffer-substring-no-properties (start end)
|
||||
|
Loading…
Reference in New Issue
Block a user