/[emacs]/emacs/lispref/text.texi
ViewVC logotype

Diff of /emacs/lispref/text.texi

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.100 by lute, Sun Jun 12 23:46:20 2005 UTC revision 1.101 by rms, Sat Jun 18 13:57:17 2005 UTC
# Line 1497  of justification.  It can be @code{left} Line 1497  of justification.  It can be @code{left}
1497  follow specified justification style (see @code{current-justification},  follow specified justification style (see @code{current-justification},
1498  below).  @code{nil} means to do full justification.  below).  @code{nil} means to do full justification.
1499    
1500  If @var{eop} is non-@code{nil}, that means do left-justification if  If @var{eop} is non-@code{nil}, that means do only left-justification
1501  @code{current-justification} specifies full justification.  This is used  if @code{current-justification} specifies full justification.  This is
1502  for the last line of a paragraph; even if the paragraph as a whole is  used for the last line of a paragraph; even if the paragraph as a
1503  fully justified, the last line should not be.  whole is fully justified, the last line should not be.
1504    
1505  If @var{nosqueeze} is non-@code{nil}, that means do not change interior  If @var{nosqueeze} is non-@code{nil}, that means do not change interior
1506  whitespace.  whitespace.
# Line 1727  Adaptive Fill mode matches this regular Line 1727  Adaptive Fill mode matches this regular
1727  starting after the left margin whitespace (if any) on a line; the  starting after the left margin whitespace (if any) on a line; the
1728  characters it matches are that line's candidate for the fill prefix.  characters it matches are that line's candidate for the fill prefix.
1729    
1730  The default value of this variable is  @w{@samp{"[ \t]*\\([-|#;>*]+[ \t]*\\|(?[0-9]+[.)][ \t]*\\)*"}} is the
1731  @w{@samp{"[ \t]*\\([-|#;>*]+[ \t]*\\|(?[0-9]+[.)][ \t]*\\)*"}}.  This  default value.  This matches a number enclosed in parentheses or
1732  matches a number enclosed in parentheses or followed by a period,  followed by a period, or certain punctuation characters, or any
1733  or certain punctuation characters, or any sequence of these  sequence of these intermingled with whitespace.  In particular, it
1734  intermingled with whitespace.  In particular, it matches a sequence of  matches a sequence of whitespace, possibly empty.
 whitespace, possibly empty.  
1735  @end defopt  @end defopt
1736    
1737  @defopt adaptive-fill-first-line-regexp  @defopt adaptive-fill-first-line-regexp
# Line 2969  A cons cell of the form @code{(foregroun Line 2968  A cons cell of the form @code{(foregroun
2968  just the foreground color or just the background color.  just the foreground color or just the background color.
2969    
2970  @code{(foreground-color . @var{color-name})} is equivalent to  @code{(foreground-color . @var{color-name})} is equivalent to
2971  @code{(:foreground @var{color-name})}, and likewise for the background.  specifying @code{(:foreground @var{color-name})}, and likewise for the
2972    background.
2973  @end itemize  @end itemize
2974    
2975  You can use Font Lock Mode (@pxref{Font Lock Mode}), to dynamically  You can use Font Lock Mode (@pxref{Font Lock Mode}), to dynamically
# Line 3561  The action code is always @code{t}. Line 3561  The action code is always @code{t}.
3561    
3562  For example, here is how Info mode handles @key{Mouse-1}:  For example, here is how Info mode handles @key{Mouse-1}:
3563    
3564  @example  @smallexample
3565  (define-key Info-mode-map [follow-link] 'mouse-face)  (define-key Info-mode-map [follow-link] 'mouse-face)
3566  @end example  @end smallexample
3567    
3568  @item a function  @item a function
3569  If the condition is a valid function, @var{func}, then a position  If the condition is a valid function, @var{func}, then a position
# Line 3574  action code. Line 3574  action code.
3574  For example, here is how pcvs enables @key{Mouse-1} to follow links on  For example, here is how pcvs enables @key{Mouse-1} to follow links on
3575  file names only:  file names only:
3576    
3577  @example  @smallexample
3578  (define-key map [follow-link]  (define-key map [follow-link]
3579    (lambda (pos)    (lambda (pos)
3580      (if (eq (get-char-property pos 'face) 'cvs-filename-face) t)))      (eq (get-char-property pos 'face) 'cvs-filename-face)))
3581  @end example  @end smallexample
3582    
3583  @item anything else  @item anything else
3584  If the condition value is anything else, then the position is inside a  If the condition value is anything else, then the position is inside a

Legend:
Removed from v.1.100  
changed lines
  Added in v.1.101

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26