1 ;;; unused.el --- editing commands in GNU Emacs that turned out not to be used.
3 ;; These were added with an eye to making possible a more CCA-compatible
4 ;; command set; but that turned out not to be interesting.
6 (defun mark-beginning-of-buffer ()
7 "Set mark at the beginning of the buffer."
9 (push-mark (point-min)))
11 (defun mark-end-of-buffer ()
12 "Set mark at the end of the buffer."
14 (push-mark (point-max)))
16 (defun upcase-char (arg)
17 "Uppercasify ARG chars starting from point. Point doesn't move"
20 (upcase-region (point) (progn (forward-char arg
) (point)))))
22 (defun forward-to-word (arg)
23 "Move forward until encountering the beginning of a word.
24 With argument, do this that many times."
26 (or (re-search-forward (if (> arg
0) "\\W\\b" "\\b\\W") nil t arg
)
27 (goto-char (if (> arg
0) (point-max) (point-min)))))
29 (defun backward-to-word (arg)
30 "Move backward until encountering the end of a word.
31 With argument, do this that many times."
33 (forward-to-word (- arg
)))
35 ;;; unused.el ends here