Mercurial > emacs
comparison lisp/textmodes/paragraphs.el @ 90224:2d92f5c9d6ae
Revision: miles@gnu.org--gnu-2005/emacs--unicode--0--patch-78
Merge from emacs--cvs-trunk--0
Patches applied:
* emacs--cvs-trunk--0 (patch 514-518)
- Update from CVS
- Merge from gnus--rel--5.10
* gnus--rel--5.10 (patch 104-105)
- Update from CVS
author | Miles Bader <miles@gnu.org> |
---|---|
date | Fri, 26 Aug 2005 09:51:52 +0000 |
parents | f9a65d7ebd29 5b1a238fcbb4 |
children | 0ca0d9181b5e |
comparison
equal
deleted
inserted
replaced
90223:edf295560b5a | 90224:2d92f5c9d6ae |
---|---|
1 ;;; paragraphs.el --- paragraph and sentence parsing | 1 ;;; paragraphs.el --- paragraph and sentence parsing |
2 | 2 |
3 ;; Copyright (C) 1985, 86, 87, 91, 94, 95, 96, 1997, 1999, 2000, 2001, 2004 | 3 ;; Copyright (C) 1985, 1986, 1987, 1991, 1994, 1995, 1996, 1997, 1999, 2000, |
4 ;; Free Software Foundation, Inc. | 4 ;; 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc. |
5 | 5 |
6 ;; Maintainer: FSF | 6 ;; Maintainer: FSF |
7 ;; Keywords: wp | 7 ;; Keywords: wp |
8 | 8 |
9 ;; This file is part of GNU Emacs. | 9 ;; This file is part of GNU Emacs. |
356 | 356 |
357 If ARG is negative, point is put at end of this paragraph, mark is put | 357 If ARG is negative, point is put at end of this paragraph, mark is put |
358 at beginning of this or a previous paragraph. | 358 at beginning of this or a previous paragraph. |
359 | 359 |
360 Interactively, if this command is repeated | 360 Interactively, if this command is repeated |
361 or (in Transient Mark mode) if the mark is active, | 361 or (in Transient Mark mode) if the mark is active, |
362 it marks the next ARG paragraphs after the ones already marked." | 362 it marks the next ARG paragraphs after the ones already marked." |
363 (interactive "p\np") | 363 (interactive "p\np") |
364 (unless arg (setq arg 1)) | 364 (unless arg (setq arg 1)) |
365 (when (zerop arg) | 365 (when (zerop arg) |
366 (error "Cannot mark zero paragraphs")) | 366 (error "Cannot mark zero paragraphs")) |