aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/textmodes
diff options
context:
space:
mode:
authorRichard M. Stallman1997-04-12 02:51:38 +0000
committerRichard M. Stallman1997-04-12 02:51:38 +0000
commitcd482e0573c6e9b4fe1be13c25d9f0f3f8626cb8 (patch)
treed3cac5a6b57c642937cc6d9bf27bbe32375c4c75 /lisp/textmodes
parent89df60f2c05881f96f4ba70f032af78ebdd56166 (diff)
downloademacs-cd482e0573c6e9b4fe1be13c25d9f0f3f8626cb8.tar.gz
emacs-cd482e0573c6e9b4fe1be13c25d9f0f3f8626cb8.zip
Add defgroup's; change use defcustom for user vars.
Diffstat (limited to 'lisp/textmodes')
-rw-r--r--lisp/textmodes/texinfo.el32
1 files changed, 22 insertions, 10 deletions
diff --git a/lisp/textmodes/texinfo.el b/lisp/textmodes/texinfo.el
index ea16b03a4ae..1a62fbc9fa0 100644
--- a/lisp/textmodes/texinfo.el
+++ b/lisp/textmodes/texinfo.el
@@ -1,7 +1,7 @@
1;;; texinfo.el --- major mode for editing Texinfo files 1;;; texinfo.el --- major mode for editing Texinfo files
2 2
3;; Copyright (C) 1985, 1988, 1989, 1990, 1991, 1992, 1993 Free Software 3;; Copyright (C) 1985, 1988, 1989, 1990, 1991, 1992, 1993, 1997
4;; Foundation, Inc. 4;; Free Software Foundation, Inc.
5 5
6;; Author: Robert J. Chassell 6;; Author: Robert J. Chassell
7;; Maintainer: FSF 7;; Maintainer: FSF
@@ -23,6 +23,10 @@
23;; Free Software Foundation, Inc., 59 Temple Place - Suite 330, 23;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
24;; Boston, MA 02111-1307, USA. 24;; Boston, MA 02111-1307, USA.
25 25
26(defgroup texinfo nil
27 "Texinfo Mode"
28 :group 'docs)
29
26 30
27;;; Autoloads: 31;;; Autoloads:
28 32
@@ -662,20 +666,28 @@ to jump to the corresponding spot in the Texinfo source file."
662 666
663;;; The tex and print function definitions: 667;;; The tex and print function definitions:
664 668
665(defvar texinfo-texi2dvi-command "texi2dvi" 669(defcustom texinfo-texi2dvi-command "texi2dvi"
666 "*Command used by `texinfo-tex-buffer' to run TeX and texindex on a buffer.") 670 "*Command used by `texinfo-tex-buffer' to run TeX and texindex on a buffer."
671 :type 'string
672 :group 'texinfo)
667 673
668(defvar texinfo-tex-command "tex" 674(defcustom texinfo-tex-command "tex"
669 "*Command used by `texinfo-tex-region' to run TeX on a region.") 675 "*Command used by `texinfo-tex-region' to run TeX on a region."
676 :type 'string
677 :group 'texinfo)
670 678
671(defvar texinfo-texindex-command "texindex" 679(defcustom texinfo-texindex-command "texindex"
672 "*Command used by `texinfo-texindex' to sort unsorted index files.") 680 "*Command used by `texinfo-texindex' to sort unsorted index files."
681 :type 'string
682 :group 'texinfo)
673 683
674(defvar texinfo-delete-from-print-queue-command "lprm" 684(defcustom texinfo-delete-from-print-queue-command "lprm"
675 "*Command string used to delete a job from the line printer queue. 685 "*Command string used to delete a job from the line printer queue.
676Command is used by \\[texinfo-delete-from-print-queue] based on 686Command is used by \\[texinfo-delete-from-print-queue] based on
677number provided by a previous \\[tex-show-print-queue] 687number provided by a previous \\[tex-show-print-queue]
678command.") 688command."
689 :type 'string
690 :group 'texinfo)
679 691
680(defvar texinfo-tex-trailer "@bye" 692(defvar texinfo-tex-trailer "@bye"
681 "String appended after a region sent to TeX by `texinfo-tex-region'.") 693 "String appended after a region sent to TeX by `texinfo-tex-region'.")