Function: mark-end-of-sentence

mark-end-of-sentence is an interactive and byte-compiled function defined in paragraphs.el.gz.

Signature

(mark-end-of-sentence ARG)

Documentation

Put mark at end of sentence.

ARG works as in forward-sentence. If this command is repeated, it marks the next ARG sentences after the ones already marked.

Probably introduced at or before Emacs version 22.1.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/textmodes/paragraphs.el.gz
(defun mark-end-of-sentence (arg)
  "Put mark at end of sentence.
ARG works as in `forward-sentence'.  If this command is repeated,
it marks the next ARG sentences after the ones already marked."
  (interactive "p")
  (push-mark
   (save-excursion
     (if (and (eq last-command this-command) (mark t))
	 (goto-char (mark)))
     (forward-sentence arg)
     (point))
   nil t))