emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] Changes to emacs/man/custom.texi [emacs-unicode-2]


From: Miles Bader
Subject: [Emacs-diffs] Changes to emacs/man/custom.texi [emacs-unicode-2]
Date: Mon, 28 Jun 2004 03:58:28 -0400

Index: emacs/man/custom.texi
diff -c emacs/man/custom.texi:1.57.2.1 emacs/man/custom.texi:1.57.2.2
*** emacs/man/custom.texi:1.57.2.1      Fri Apr 16 12:50:40 2004
--- emacs/man/custom.texi       Mon Jun 28 07:29:00 2004
***************
*** 12,18 ****
  for information on using X resources to customize Emacs.
  
    Customization that you do within Emacs normally affects only the
! particular Emacs session that you do it in--it does not persist
  between sessions unless you save the customization in a file such as
  @file{.emacs} or @file{.Xdefaults} that will affect future sessions.
  @xref{Init File}.  In the customization buffer, when you save
--- 12,18 ----
  for information on using X resources to customize Emacs.
  
    Customization that you do within Emacs normally affects only the
! particular Emacs session that you do it in---it does not persist
  between sessions unless you save the customization in a file such as
  @file{.emacs} or @file{.Xdefaults} that will affect future sessions.
  @xref{Init File}.  In the customization buffer, when you save
***************
*** 1946,1952 ****
  @file{site-start.el}, if it exists.  Like @file{default.el}, Emacs
  finds this file via the standard search path for Lisp libraries.
  Emacs loads this library before it loads your init file.  To inhibit
! loading of this library, use the option @samp{-no-site-file}.
  @xref{Initial Options}.
  
    You can place @file{default.el} and @file{site-start.el} in any of
--- 1946,1952 ----
  @file{site-start.el}, if it exists.  Like @file{default.el}, Emacs
  finds this file via the standard search path for Lisp libraries.
  Emacs loads this library before it loads your init file.  To inhibit
! loading of this library, use the option @samp{--no-site-file}.
  @xref{Initial Options}.
  
    You can place @file{default.el} and @file{site-start.el} in any of
***************
*** 1984,1992 ****
  fill-column 60)} calls the function @code{setq} to set the variable
  @code{fill-column} (@pxref{Filling}) to 60.
  
!   The second argument to @code{setq} is an expression for the new value of
! the variable.  This can be a constant, a variable, or a function call
! expression.  In @file{.emacs}, constants are used most of the time.  They can 
be:
  
  @table @asis
  @item Numbers:
--- 1984,2003 ----
  fill-column 60)} calls the function @code{setq} to set the variable
  @code{fill-column} (@pxref{Filling}) to 60.
  
!   You can set any Lisp variable with @code{setq}, but with certain
! variables @code{setq} won't do what you probably want in the
! @file{.emacs} file.  Some variables automatically become buffer-local
! when set with @code{setq}; what you want in @file{.emacs} is to set
! the default value, using @code{setq-default}.  Some customizable minor
! mode variables do special things to enable the mode when you set them
! with Customize, but ordinary @code{setq} won't do that; to enable the
! mode in your @file{.emacs} file, call the minor mode command.  The
! following section has examples of both of these methods.
! 
!   The second argument to @code{setq} is an expression for the new
! value of the variable.  This can be a constant, a variable, or a
! function call expression.  In @file{.emacs}, constants are used most
! of the time.  They can be:
  
  @table @asis
  @item Numbers:
***************
*** 2108,2113 ****
--- 2119,2132 ----
  
  @need 1500
  @item
+ Turn off Line Number mode, a global minor mode.
+ 
+ @example
+ (line-number-mode 0)
+ @end example
+ 
+ @need 1500
+ @item
  Turn on Auto Fill mode automatically in Text mode and related modes.
  
  @example




reply via email to

[Prev in Thread] Current Thread [Next in Thread]