aboutsummaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
Diffstat (limited to 'doc')
-rw-r--r--doc/lispintro/emacs-lisp-intro.texi20
1 files changed, 14 insertions, 6 deletions
diff --git a/doc/lispintro/emacs-lisp-intro.texi b/doc/lispintro/emacs-lisp-intro.texi
index 4a0e8dfa1fc..26a405361de 100644
--- a/doc/lispintro/emacs-lisp-intro.texi
+++ b/doc/lispintro/emacs-lisp-intro.texi
@@ -16892,8 +16892,12 @@ remember to look here to remind myself.
16892@node Text and Auto-fill 16892@node Text and Auto-fill
16893@section Text and Auto Fill Mode 16893@section Text and Auto Fill Mode
16894 16894
16895Now we come to the part that turns on Text mode and 16895Now we come to the part that turns on Text mode and Auto Fill
16896Auto Fill mode. 16896mode.@footnote{This section suggests settings that are more suitable
16897for writers. For programmers, the default mode will be set to the
16898corresponding prog-mode automatically based on the type of the file.
16899And it's perfectly fine if you want to keep the fundamental mode as
16900the default mode.}
16897 16901
16898@smallexample 16902@smallexample
16899@group 16903@group
@@ -16945,15 +16949,19 @@ Here is the line again; how does it work?
16945 16949
16946@cindex Text Mode turned on 16950@cindex Text Mode turned on
16947@smallexample 16951@smallexample
16948(setq major-mode 'text-mode) 16952(setq-default major-mode 'text-mode)
16949@end smallexample 16953@end smallexample
16950 16954
16951@noindent 16955@noindent
16952This line is a short, but complete Emacs Lisp expression. 16956This line is a short, but complete Emacs Lisp expression.
16953 16957
16954We are already familiar with @code{setq}. It sets the following 16958We are already familiar with @code{setq}. We use a similar macro
16955variable, @code{major-mode}, to the subsequent value, which is 16959@code{setq-default} to set the following variable,
16956@code{text-mode}. The single-quote before @code{text-mode} tells 16960@code{major-mode}@footnote{We use @code{setq-default} because
16961@code{text-mode} is buffer local. If we use @code{setq} it will only
16962apply to the current buffer, and using @code{setq-default} will also
16963apply this to newly created buffers.}, to the subsequent value, which
16964is @code{text-mode}. The single-quote before @code{text-mode} tells
16957Emacs to deal directly with the @code{text-mode} symbol, not with 16965Emacs to deal directly with the @code{text-mode} symbol, not with
16958whatever it might stand for. @xref{setq, , Setting the Value of 16966whatever it might stand for. @xref{setq, , Setting the Value of
16959a Variable}, for a reminder of how @code{setq} works. The main point 16967a Variable}, for a reminder of how @code{setq} works. The main point