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


From: Juri Linkov
Subject: [Emacs-diffs] Changes to emacs/lisp/textmodes/paragraphs.el
Date: Sun, 12 Dec 2004 22:49:25 -0500

Index: emacs/lisp/textmodes/paragraphs.el
diff -c emacs/lisp/textmodes/paragraphs.el:1.75 
emacs/lisp/textmodes/paragraphs.el:1.76
*** emacs/lisp/textmodes/paragraphs.el:1.75     Sat Oct  9 18:49:01 2004
--- emacs/lisp/textmodes/paragraphs.el  Mon Dec 13 03:11:09 2004
***************
*** 357,369 ****
  If ARG is negative, point is put at end of this paragraph, mark is put
  at beginning of this or a previous paragraph.
  
! If this command is repeated, it marks the next ARG paragraphs after (or
! before, if arg is negative) the ones already marked."
    (interactive "p")
    (unless arg (setq arg 1))
    (when (zerop arg)
      (error "Cannot mark zero paragraphs"))
!   (cond ((and (eq last-command this-command) (mark t))
         (set-mark
          (save-excursion
            (goto-char (mark))
--- 357,371 ----
  If ARG is negative, point is put at end of this paragraph, mark is put
  at beginning of this or a previous paragraph.
  
! If this command is repeated or mark is active in Transient Mark mode,
! it marks the next ARG paragraphs after (or before, if arg is negative)
! the ones already marked."
    (interactive "p")
    (unless arg (setq arg 1))
    (when (zerop arg)
      (error "Cannot mark zero paragraphs"))
!   (cond ((or (and (eq last-command this-command) (mark t))
!            (and transient-mark-mode mark-active))
         (set-mark
          (save-excursion
            (goto-char (mark))




reply via email to

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