aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--man/ChangeLog4
-rw-r--r--man/faq.texi34
2 files changed, 31 insertions, 7 deletions
diff --git a/man/ChangeLog b/man/ChangeLog
index 3c4b718c796..3e50995f76f 100644
--- a/man/ChangeLog
+++ b/man/ChangeLog
@@ -1,3 +1,7 @@
12005-12-29 Romain Francoise <romain@orebokech.com>
2
3 * faq.texi (Using Customize): New node.
4
12005-12-28 Luc Teirlinck <teirllm@auburn.edu> 52005-12-28 Luc Teirlinck <teirllm@auburn.edu>
2 6
3 * org.texi: Remove blank line in @direntry. It is non-standard 7 * org.texi: Remove blank line in @direntry. It is non-standard
diff --git a/man/faq.texi b/man/faq.texi
index 36564482cc7..b34a4d4ae12 100644
--- a/man/faq.texi
+++ b/man/faq.texi
@@ -1161,6 +1161,7 @@ In addition, Emacs 22 now includes the Emacs Lisp Reference Manual
1161 1161
1162@menu 1162@menu
1163* Setting up a customization file:: 1163* Setting up a customization file::
1164* Using Customize::
1164* Debugging a customization file:: 1165* Debugging a customization file::
1165* Colors on a TTY:: 1166* Colors on a TTY::
1166* Displaying the current line or column:: 1167* Displaying the current line or column::
@@ -1211,7 +1212,7 @@ In addition, Emacs 22 now includes the Emacs Lisp Reference Manual
1211* Escape sequences in shell output:: 1212* Escape sequences in shell output::
1212@end menu 1213@end menu
1213 1214
1214@node Setting up a customization file, Colors on a TTY, Common requests, Common requests 1215@node Setting up a customization file, Using Customize, Common requests, Common requests
1215@section How do I set up a @file{.emacs} file properly? 1216@section How do I set up a @file{.emacs} file properly?
1216@cindex @file{.emacs} file, setting up 1217@cindex @file{.emacs} file, setting up
1217@cindex @file{.emacs} file, locating 1218@cindex @file{.emacs} file, locating
@@ -1225,11 +1226,11 @@ it causes confusing non-standard behavior. Then they send questions to
1225@email{help-gnu-emacs@@gnu.org} asking why Emacs isn't behaving as 1226@email{help-gnu-emacs@@gnu.org} asking why Emacs isn't behaving as
1226documented. 1227documented.
1227 1228
1228Beginning with version 20.1, Emacs includes the new Customize facility, 1229Beginning with version 20.1, Emacs includes the new Customize facility
1229which can be invoked using @kbd{M-x customize @key{RET}}. This allows 1230(@pxref{Using Customize}). This allows users who are unfamiliar with
1230users who are unfamiliar with Emacs Lisp to modify their @file{.emacs} 1231Emacs Lisp to modify their @file{.emacs} files in a relatively
1231files in a relatively straightforward way, using menus rather than Lisp 1232straightforward way, using menus rather than Lisp code. Most packages
1232code. Most packages support Customize as of this writing. 1233support Customize as of this writing.
1233 1234
1234While Customize might indeed make it easier to configure Emacs, 1235While Customize might indeed make it easier to configure Emacs,
1235consider taking a bit of time to learn Emacs Lisp and modifying your 1236consider taking a bit of time to learn Emacs Lisp and modifying your
@@ -1241,7 +1242,26 @@ Sometimes users are unsure as to where their @file{.emacs} file should
1241be found. Visiting the file as @file{~/.emacs} from Emacs will find 1242be found. Visiting the file as @file{~/.emacs} from Emacs will find
1242the correct file. 1243the correct file.
1243 1244
1244@node Colors on a TTY, Debugging a customization file, Setting up a customization file, Common requests 1245@node Using Customize, Colors on a TTY, Setting up a customization file, Common requests
1246@section How do I start using Customize?
1247@cindex Customize groups
1248@cindex Customizing variables
1249@cindex Customizing faces
1250
1251The main Customize entry point is @kbd{M-x customize @key{RET}}. This
1252command takes you to a buffer listing all the available Customize
1253groups. From there, you can access all customizable options and faces,
1254change their values, and save your changes to your init file.
1255@inforef{Easy Customization, Easy Customization, emacs}.
1256
1257If you know the name of the group in advance (e.g. ``shell''), use
1258@kbd{M-x customize-group @key{RET}}.
1259
1260If you wish to customize a single option, use @kbd{M-x customize-option
1261@key{RET}}. This command prompts you for the name of the option to
1262customize, with completion.
1263
1264@node Colors on a TTY, Debugging a customization file, Using Customize, Common requests
1245@section How do I get colors and syntax highlighting on a TTY? 1265@section How do I get colors and syntax highlighting on a TTY?
1246@cindex Colors on a TTY 1266@cindex Colors on a TTY
1247@cindex Syntax highlighting on a TTY 1267@cindex Syntax highlighting on a TTY