Mercurial > emacs
annotate lisp/unused.el @ 47707:fd1ed358e0c8
Don't bind
utf-8-translation-table-for-decode while setting up
ucs-mule-8859-to-ucs-table, etc. Add `depenency' property to
iso-8859-* coding systems.
(ucs-unify-8859): Arguments changed to FOR-ENCODE and FOR-DECODE.
If FOR-DECODE is non-nil, make ucs-mule-8859-to-mule-unicode
populate the translation table named
ucs-translation-table-for-decode. If FOR-ENCODE is non-nil, make
ucs-mule-to-mule-unicode populates the translation table named
utf-translation-table-for-encode. Call register-char-codings for
mule-utf-16-be and mule-utf-16-le too.
(ucs-fragment-8859): Arguments changed to FOR-ENCODE and
FOR-DECODE. If FOR-DECODE is non-nil, make the translation table
named ucs-translation-table-for-decode vacant. If FOR-ENCODE is
non-nil, make a proper char-table populates the translation table
name utf-translation-table-for-encode. Call register-char-codings
for all mule-utf-* to to reset their status to the origianl.
(unify-8859-on-encoding-mode): Call ucs-unify-8859 and
ucs-fragment-8859 with fixed arguments. Set the version to 21.3.
(unify-8859-on-decoding-mode): Likewise. Remove dependency.
(ccl-encode-unicode-font): Deleted,
(ucs-tables-unload-hook): Deleted.
author | Kenichi Handa <handa@m17n.org> |
---|---|
date | Mon, 30 Sep 2002 06:38:13 +0000 |
parents | 253f761ad37b |
children |
rev | line source |
---|---|
38412
253f761ad37b
Some fixes to follow coding conventions in files maintained by FSF.
Pavel Janík <Pavel@Janik.cz>
parents:
896
diff
changeset
|
1 ;;; unused.el --- editing commands in GNU Emacs that turned out not to be used |
896 | 2 ;;; This file is in the public domain, as it was distributed in |
3 ;;; 1985 or 1986 without a copyright notice. Written by RMS. | |
657
fec3f9a1e3e5
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1
diff
changeset
|
4 |
38412
253f761ad37b
Some fixes to follow coding conventions in files maintained by FSF.
Pavel Janík <Pavel@Janik.cz>
parents:
896
diff
changeset
|
5 ;; This file is part of GNU Emacs. |
253f761ad37b
Some fixes to follow coding conventions in files maintained by FSF.
Pavel Janík <Pavel@Janik.cz>
parents:
896
diff
changeset
|
6 |
773
9c89fd7ddd41
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
657
diff
changeset
|
7 ;; Maintainer: FSF |
814
38b2499cb3e9
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
773
diff
changeset
|
8 ;; Keywords: emulations |
773
9c89fd7ddd41
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
657
diff
changeset
|
9 |
9c89fd7ddd41
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
657
diff
changeset
|
10 ;;; Commentary: |
9c89fd7ddd41
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
657
diff
changeset
|
11 |
657
fec3f9a1e3e5
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1
diff
changeset
|
12 ;; These were added with an eye to making possible a more CCA-compatible |
1 | 13 ;; command set; but that turned out not to be interesting. |
14 | |
773
9c89fd7ddd41
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
657
diff
changeset
|
15 ;;; Code: |
9c89fd7ddd41
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
657
diff
changeset
|
16 |
1 | 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. | |
35 With 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. | |
42 With argument, do this that many times." | |
43 (interactive "p") | |
44 (forward-to-word (- arg))) | |
657
fec3f9a1e3e5
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1
diff
changeset
|
45 |
fec3f9a1e3e5
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1
diff
changeset
|
46 ;;; unused.el ends here |