emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] Changes to emacs/lispref/text.texi


From: Richard M . Stallman
Subject: [Emacs-diffs] Changes to emacs/lispref/text.texi
Date: Sat, 18 Jun 2005 09:57:17 -0400

Index: emacs/lispref/text.texi
diff -c emacs/lispref/text.texi:1.100 emacs/lispref/text.texi:1.101
*** emacs/lispref/text.texi:1.100       Sun Jun 12 23:46:20 2005
--- emacs/lispref/text.texi     Sat Jun 18 13:57:17 2005
***************
*** 1497,1506 ****
  follow specified justification style (see @code{current-justification},
  below).  @code{nil} means to do full justification.
  
! If @var{eop} is address@hidden, that means do left-justification if
! @code{current-justification} specifies full justification.  This is used
! for the last line of a paragraph; even if the paragraph as a whole is
! fully justified, the last line should not be.
  
  If @var{nosqueeze} is address@hidden, that means do not change interior
  whitespace.
--- 1497,1506 ----
  follow specified justification style (see @code{current-justification},
  below).  @code{nil} means to do full justification.
  
! If @var{eop} is address@hidden, that means do only left-justification
! if @code{current-justification} specifies full justification.  This is
! used for the last line of a paragraph; even if the paragraph as a
! whole is fully justified, the last line should not be.
  
  If @var{nosqueeze} is address@hidden, that means do not change interior
  whitespace.
***************
*** 1727,1738 ****
  starting after the left margin whitespace (if any) on a line; the
  characters it matches are that line's candidate for the fill prefix.
  
! The default value of this variable is
! @address@hidden"[ \t]*\\([-|#;>*]+[ \t]*\\|(?[0-9]+[.)][ \t]*\\)*"}}.  This
! matches a number enclosed in parentheses or followed by a period,
! or certain punctuation characters, or any sequence of these
! intermingled with whitespace.  In particular, it matches a sequence of
! whitespace, possibly empty.
  @end defopt
  
  @defopt adaptive-fill-first-line-regexp
--- 1727,1737 ----
  starting after the left margin whitespace (if any) on a line; the
  characters it matches are that line's candidate for the fill prefix.
  
! @address@hidden"[ \t]*\\([-|#;>*]+[ \t]*\\|(?[0-9]+[.)][ \t]*\\)*"}} is the
! default value.  This matches a number enclosed in parentheses or
! followed by a period, or certain punctuation characters, or any
! sequence of these intermingled with whitespace.  In particular, it
! matches a sequence of whitespace, possibly empty.
  @end defopt
  
  @defopt adaptive-fill-first-line-regexp
***************
*** 2969,2975 ****
  just the foreground color or just the background color.
  
  @code{(foreground-color . @var{color-name})} is equivalent to
! @code{(:foreground @var{color-name})}, and likewise for the background.
  @end itemize
  
  You can use Font Lock Mode (@pxref{Font Lock Mode}), to dynamically
--- 2968,2975 ----
  just the foreground color or just the background color.
  
  @code{(foreground-color . @var{color-name})} is equivalent to
! specifying @code{(:foreground @var{color-name})}, and likewise for the
! background.
  @end itemize
  
  You can use Font Lock Mode (@pxref{Font Lock Mode}), to dynamically
***************
*** 3561,3569 ****
  
  For example, here is how Info mode handles @key{Mouse-1}:
  
! @example
  (define-key Info-mode-map [follow-link] 'mouse-face)
! @end example
  
  @item a function
  If the condition is a valid function, @var{func}, then a position
--- 3561,3569 ----
  
  For example, here is how Info mode handles @key{Mouse-1}:
  
! @smallexample
  (define-key Info-mode-map [follow-link] 'mouse-face)
! @end smallexample
  
  @item a function
  If the condition is a valid function, @var{func}, then a position
***************
*** 3574,3584 ****
  For example, here is how pcvs enables @key{Mouse-1} to follow links on
  file names only:
  
! @example
  (define-key map [follow-link]
    (lambda (pos)
!     (if (eq (get-char-property pos 'face) 'cvs-filename-face) t)))
! @end example
  
  @item anything else
  If the condition value is anything else, then the position is inside a
--- 3574,3584 ----
  For example, here is how pcvs enables @key{Mouse-1} to follow links on
  file names only:
  
! @smallexample
  (define-key map [follow-link]
    (lambda (pos)
!     (eq (get-char-property pos 'face) 'cvs-filename-face)))
! @end smallexample
  
  @item anything else
  If the condition value is anything else, then the position is inside a




reply via email to

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