Mercurial > emacs
comparison lisp/textmodes/paragraphs.el @ 64751:5b1a238fcbb4
Update years in copyright notice; nfc.
author | Thien-Thi Nguyen <ttn@gnuvola.org> |
---|---|
date | Sat, 06 Aug 2005 17:48:15 +0000 |
parents | a8fa7c632ee4 |
children | 15de85d4b7fe 2d92f5c9d6ae |
comparison
equal
deleted
inserted
replaced
64750:fbdb9482b6fc | 64751:5b1a238fcbb4 |
---|---|
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")) |