aboutsummaryrefslogtreecommitdiffstats
path: root/man
diff options
context:
space:
mode:
Diffstat (limited to 'man')
-rw-r--r--man/ChangeLog8
-rw-r--r--man/basic.texi8
-rw-r--r--man/display.texi7
-rw-r--r--man/faq.texi34
4 files changed, 46 insertions, 11 deletions
diff --git a/man/ChangeLog b/man/ChangeLog
index 3c4b718c796..168753ae7a7 100644
--- a/man/ChangeLog
+++ b/man/ChangeLog
@@ -1,3 +1,11 @@
12005-12-30 Juri Linkov <juri@jurta.org>
2
3 * basic.texi (Position Info): Update example.
4
52005-12-29 Romain Francoise <romain@orebokech.com>
6
7 * faq.texi (Using Customize): New node.
8
12005-12-28 Luc Teirlinck <teirllm@auburn.edu> 92005-12-28 Luc Teirlinck <teirllm@auburn.edu>
2 10
3 * org.texi: Remove blank line in @direntry. It is non-standard 11 * org.texi: Remove blank line in @direntry. It is non-standard
diff --git a/man/basic.texi b/man/basic.texi
index e8c36d405c1..c2e48263c20 100644
--- a/man/basic.texi
+++ b/man/basic.texi
@@ -717,14 +717,14 @@ displays the character as @samp{@`A}), and which has font-lock-mode
717 717
718@smallexample 718@smallexample
719 character: @`A (2240, #o4300, #x8c0, U+00C0) 719 character: @`A (2240, #o4300, #x8c0, U+00C0)
720 charset: [latin-iso8859-1] 720 charset: latin-iso8859-1
721 (Right-Hand Part of Latin Alphabet 1@dots{} 721 (Right-Hand Part of Latin Alphabet 1@dots{}
722 code point: [64] 722 code point: #x40
723 syntax: w which means: word 723 syntax: w which means: word
724 category: l:Latin 724 category: l:Latin
725 to input: type "`A" with [latin-1-prefix] 725 to input: type "`A" with latin-1-prefix
726buffer code: #x81 #xC0 726buffer code: #x81 #xC0
727 file code: ESC #x2C #x41 #x40 (encoded by coding system iso-2022-7bit) 727 file code: #xC0 (encoded by coding system iso-latin-1)
728 display: terminal code #xC0 728 display: terminal code #xC0
729 729
730There are text properties here: 730There are text properties here:
diff --git a/man/display.texi b/man/display.texi
index 2f813c4b7c0..2a3fc30ad82 100644
--- a/man/display.texi
+++ b/man/display.texi
@@ -1014,6 +1014,13 @@ terminal itself blinks the cursor, and Emacs has no control over it.)
1014You can control how the cursor appears when it blinks off by setting 1014You can control how the cursor appears when it blinks off by setting
1015the variable @code{blink-cursor-alist}. 1015the variable @code{blink-cursor-alist}.
1016 1016
1017@vindex visible-cursor
1018 Some text terminals offer two different cursors: the normal cursor
1019and the very visible cursor, where the latter may be e.g. bigger or
1020blinking. By default Emacs uses the very visible cursor. Setting the
1021variable @code{visible-cursor} to @code{nil} makes it use the
1022normal cursor.
1023
1017@cindex cursor in non-selected windows 1024@cindex cursor in non-selected windows
1018@vindex cursor-in-non-selected-windows 1025@vindex cursor-in-non-selected-windows
1019 Normally, the cursor appears in non-selected windows in the ``off'' 1026 Normally, the cursor appears in non-selected windows in the ``off''
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