2020-08-31 15:49:05 +02:00
|
|
|
;;; region.el --- Functions for working with regions -*- lexical-binding: t -*-
|
|
|
|
|
2020-01-15 18:21:28 +01:00
|
|
|
;; Author: William Carroll <wpcarro@gmail.com>
|
2020-08-31 15:49:05 +02:00
|
|
|
;; Version: 0.0.1
|
|
|
|
;; Package-Requires: ((emacs "24"))
|
2020-01-15 18:21:28 +01:00
|
|
|
|
|
|
|
;;; Commentary:
|
|
|
|
;; Sometimes Emacs's function names and argument ordering is great; other times,
|
|
|
|
;; it isn't.
|
|
|
|
|
|
|
|
;;; Code:
|
|
|
|
|
|
|
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
|
|
;; Library
|
|
|
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
|
|
|
2020-08-31 15:49:05 +02:00
|
|
|
(defun region-to-string ()
|
2020-08-31 17:07:11 +02:00
|
|
|
"Return the string in the active region."
|
2020-01-15 18:21:28 +01:00
|
|
|
(buffer-substring-no-properties (region-beginning)
|
|
|
|
(region-end)))
|
|
|
|
|
|
|
|
(provide 'region)
|
|
|
|
;;; region.el ends here
|