aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJuanma Barranquero2003-05-30 23:17:19 +0000
committerJuanma Barranquero2003-05-30 23:17:19 +0000
commitc2aa9675ab3be7f32af68e9806fcf2a37130a513 (patch)
tree298f614f1fd7c96cab870f634543ae9dfb7452ad
parent9bccd1e395996be25513711983d9d66156866bc4 (diff)
downloademacs-c2aa9675ab3be7f32af68e9806fcf2a37130a513.tar.gz
emacs-c2aa9675ab3be7f32af68e9806fcf2a37130a513.zip
Removed. Contents moved to misc.el
-rw-r--r--lisp/unused.el46
1 files changed, 0 insertions, 46 deletions
diff --git a/lisp/unused.el b/lisp/unused.el
deleted file mode 100644
index 6439bb21ee7..00000000000
--- a/lisp/unused.el
+++ /dev/null
@@ -1,46 +0,0 @@
1;;; unused.el --- editing commands in GNU Emacs that turned out not to be used
2;;; This file is in the public domain, as it was distributed in
3;;; 1985 or 1986 without a copyright notice. Written by RMS.
4
5;; This file is part of GNU Emacs.
6
7;; Maintainer: FSF
8;; Keywords: emulations
9
10;;; Commentary:
11
12;; These were added with an eye to making possible a more CCA-compatible
13;; command set; but that turned out not to be interesting.
14
15;;; Code:
16
17(defun mark-beginning-of-buffer ()
18 "Set mark at the beginning of the buffer."
19 (interactive)
20 (push-mark (point-min)))
21
22(defun mark-end-of-buffer ()
23 "Set mark at the end of the buffer."
24 (interactive)
25 (push-mark (point-max)))
26
27(defun upcase-char (arg)
28 "Uppercasify ARG chars starting from point. Point doesn't move"
29 (interactive "p")
30 (save-excursion
31 (upcase-region (point) (progn (forward-char arg) (point)))))
32
33(defun forward-to-word (arg)
34 "Move forward until encountering the beginning of a word.
35With argument, do this that many times."
36 (interactive "p")
37 (or (re-search-forward (if (> arg 0) "\\W\\b" "\\b\\W") nil t arg)
38 (goto-char (if (> arg 0) (point-max) (point-min)))))
39
40(defun backward-to-word (arg)
41 "Move backward until encountering the end of a word.
42With argument, do this that many times."
43 (interactive "p")
44 (forward-to-word (- arg)))
45
46;;; unused.el ends here