emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] Changes to emacs/lisp/textmodes/paragraphs.el [lexbind]


From: Miles Bader
Subject: [Emacs-diffs] Changes to emacs/lisp/textmodes/paragraphs.el [lexbind]
Date: Mon, 25 Oct 2004 00:45:18 -0400

Index: emacs/lisp/textmodes/paragraphs.el
diff -c emacs/lisp/textmodes/paragraphs.el:1.60.4.9 
emacs/lisp/textmodes/paragraphs.el:1.60.4.10
*** emacs/lisp/textmodes/paragraphs.el:1.60.4.9 Wed Oct  6 05:23:58 2004
--- emacs/lisp/textmodes/paragraphs.el  Mon Oct 25 04:19:43 2004
***************
*** 1,6 ****
  ;;; paragraphs.el --- paragraph and sentence parsing
  
! ;; Copyright (C) 1985, 86, 87, 91, 94, 95, 96, 1997, 1999, 2000, 2001
  ;;    Free Software Foundation, Inc.
  
  ;; Maintainer: FSF
--- 1,6 ----
  ;;; paragraphs.el --- paragraph and sentence parsing
  
! ;; Copyright (C) 1985, 86, 87, 91, 94, 95, 96, 1997, 1999, 2000, 2001, 2004
  ;;    Free Software Foundation, Inc.
  
  ;; Maintainer: FSF
***************
*** 122,129 ****
  and `colon-double-space'.
  
  This value is used by the function `sentence-end' to construct the
! regexp describing the end of a sentence, in case when the value of
! the variable `sentence-end' is nil.  See Info node `Sentences'."
    :type 'boolean
    :group 'fill)
  
--- 122,129 ----
  and `colon-double-space'.
  
  This value is used by the function `sentence-end' to construct the
! regexp describing the end of a sentence, when the value of the variable
! `sentence-end' is nil.  See Info node `(elisp)Standard Regexps'."
    :type 'boolean
    :group 'fill)
  
***************
*** 133,150 ****
  without a period.
  
  This value is used by the function `sentence-end' to construct the
! regexp describing the end of a sentence, in case when the value of
! the variable `sentence-end' is nil.  See Info node `Sentences'."
    :type 'boolean
    :group 'fill)
  
  (defcustom sentence-end-without-space
    "$B!#!%!)!*$A!##.#?#!$(0!$!%!)!*$(G!$!%!)!*(B"
!   "*String containing characters that end sentence without following spaces.
  
  This value is used by the function `sentence-end' to construct the
! regexp describing the end of a sentence, in case when the value of
! the variable `sentence-end' is nil.  See Info node `Sentences'."
    :group 'paragraphs
    :type 'string)
  
--- 133,150 ----
  without a period.
  
  This value is used by the function `sentence-end' to construct the
! regexp describing the end of a sentence, when the value of the variable
! `sentence-end' is nil.  See Info node `(elisp)Standard Regexps'."
    :type 'boolean
    :group 'fill)
  
  (defcustom sentence-end-without-space
    "$B!#!%!)!*$A!##.#?#!$(0!$!%!)!*$(G!$!%!)!*(B"
!   "*String of characters that end sentence without following spaces.
  
  This value is used by the function `sentence-end' to construct the
! regexp describing the end of a sentence, when the value of the variable
! `sentence-end' is nil.  See Info node `(elisp)Standard Regexps'."
    :group 'paragraphs
    :type 'string)
  
***************
*** 169,175 ****
  that in order to be recognized as the end of a sentence, the
  ending period, question mark, or exclamation point must be
  followed by two spaces, unless it's inside some sort of quotes or
! parenthesis.  See Info node `Sentences'."
    (or sentence-end
        (concat (if sentence-end-without-period "\\w  \\|")
                "\\([.?!][]\"'\xd0c9\x5397d)}]*"
--- 169,175 ----
  that in order to be recognized as the end of a sentence, the
  ending period, question mark, or exclamation point must be
  followed by two spaces, unless it's inside some sort of quotes or
! parenthesis.  See Info node `(elisp)Standard Regexps'."
    (or sentence-end
        (concat (if sentence-end-without-period "\\w  \\|")
                "\\([.?!][]\"'\xd0c9\x5397d)}]*"




reply via email to

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