Mercurial > hg > xemacs-beta
comparison lisp/mule/mule-coding.el @ 528:ef4d2466a29c
[xemacs-hg @ 2001-05-10 09:59:45 by ben]
implement user-name-all-completions under Windows.
xemacs.mak: need another lib (netapi32.lib) for user-name-all-completions.
emacs.c: create new function force-debugging-signal (only when DEBUG_XEMACS)
to breakpoint or abort to the debugger.
mule\mule-coding.el, file-coding.c, file-coding.h, lisp.h: move
coding-system-charset to lisp to avoid doc warning.
autoload.el, packages.el, startup.el, update-elc-2.el, update-elc.el:
Rewrite much of the bootstrapping process to be more robust,
and in particular to rebuild the auto-autoloads and
custom-loads files no matter what state (including missing)
they're currently in.
xemacs.mak: remove autoload-building target.
Makefile.in.in: remove autoload targets.
author | ben |
---|---|
date | Thu, 10 May 2001 09:59:57 +0000 |
parents | 7039e6323819 |
children | 943eaba38521 |
comparison
equal
deleted
inserted
replaced
527:7b35ad872326 | 528:ef4d2466a29c |
---|---|
59 | 59 |
60 (defun coding-system-lock-shift (coding-system) | 60 (defun coding-system-lock-shift (coding-system) |
61 "Return the 'lock-shift property of CODING-SYSTEM." | 61 "Return the 'lock-shift property of CODING-SYSTEM." |
62 (coding-system-property coding-system 'lock-shift)) | 62 (coding-system-property coding-system 'lock-shift)) |
63 | 63 |
64 (defun coding-system-charset (coding-system register) | |
65 "Return the charset initially designated to REGISTER in CODING-SYSTEM. | |
66 The allowable range of REGISTER is 0 through 3." | |
67 (if (or (< register 0) (> register 3)) | |
68 (error 'args-out-of-range "coding-system-charset REGISTER" register 0 3)) | |
69 (coding-system-property coding-system (nth register '(charset-g0 | |
70 charset-g1 | |
71 charset-g2 | |
72 charset-g3)))) | |
73 | |
64 ;;(defun coding-system-use-japanese-jisx0201-roman (coding-system) | 74 ;;(defun coding-system-use-japanese-jisx0201-roman (coding-system) |
65 ;; "Return the 'use-japanese-jisx0201-roman property of CODING-SYSTEM." | 75 ;; "Return the 'use-japanese-jisx0201-roman property of CODING-SYSTEM." |
66 ;; (coding-system-property coding-system 'use-japanese-jisx0201-roman)) | 76 ;; (coding-system-property coding-system 'use-japanese-jisx0201-roman)) |
67 | 77 |
68 ;;(defun coding-system-use-japanese-jisx0208-1978 (coding-system) | 78 ;;(defun coding-system-use-japanese-jisx0208-1978 (coding-system) |