diff options
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/acdw.el | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/lisp/acdw.el b/lisp/acdw.el index eab0719..4c17bcb 100644 --- a/lisp/acdw.el +++ b/lisp/acdw.el | |||
@@ -87,21 +87,6 @@ ARG). When called with multiple arguments or a list, it returns | |||
87 | (save-restriction | 87 | (save-restriction |
88 | (unfill-region (point-min) (point-max)))))) | 88 | (unfill-region (point-min) (point-max)))))) |
89 | 89 | ||
90 | (defun kill-ring-save-unfilled (start end &optional region) | ||
91 | "Unfill, kill, then re-fill the region defined by START and END positions. | ||
92 | REGION is passed straight to `kill-ring-save'." | ||
93 | (interactive "*r") | ||
94 | (let ((sentence-end-double-space nil)) | ||
95 | (unfill-region start end) | ||
96 | (kill-ring-save | ||
97 | ;; A quick hack to try and ameliorate the "Args out of range" error when | ||
98 | ;; `unfill-region' removes some newlines. I'm not sure if this will work | ||
99 | ;; if calling from Lisp or other such nonsense. | ||
100 | (max start (point-min)) | ||
101 | (min end (point-max)) | ||
102 | region)) | ||
103 | (fill-region start end)) | ||
104 | |||
105 | (defmacro when-unfocused (name &rest forms) | 90 | (defmacro when-unfocused (name &rest forms) |
106 | "Define a function NAME, executing FORMS, that fires when Emacs | 91 | "Define a function NAME, executing FORMS, that fires when Emacs |
107 | is unfocused." | 92 | is unfocused." |