-
Notifications
You must be signed in to change notification settings - Fork 0
/
trinket.el
executable file
·49 lines (36 loc) · 1.49 KB
/
trinket.el
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
;;; trinket.el --- Simple tools -*- lexical-binding: t; -*-
;; Copyright (C) 2016 Aaron Harris
;; Author: Aaron Harris <[email protected]>
;; Keywords: convenience
;; This program is free software; you can redistribute it and/or modify
;; it under the terms of the GNU General Public License as published by
;; the Free Software Foundation, either version 3 of the License, or
;; (at your option) any later version.
;; This program is distributed in the hope that it will be useful,
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
;; GNU General Public License for more details.
;; You should have received a copy of the GNU General Public License
;; along with this program. If not, see <http://www.gnu.org/licenses/>.
;;; Commentary:
;; This module contains general-use functions that don't seem to
;; belong anywhere else.
;;; Code:
(defun trinket-bol (&optional pos)
"Return position of first character on line containing POS.
If POS is omitted, use position of point.
Do not move point."
(save-excursion
(let ((pos (or pos (point))))
(goto-char pos)
(line-beginning-position))))
(defun trinket-eol (&optional pos)
"Return position of last character on line containing POS.
If POS is omitted, use position of point.
Do not move point."
(save-excursion
(let ((pos (or pos (point))))
(goto-char pos)
(line-end-position))))
(provide 'trinket)
;;; trinket.el ends here