Merge from emacs--devo--0
Revision: emacs@sv.gnu.org/emacs--unicode--0--patch-294
This commit is contained in:
commit
0bd5084171
639 changed files with 54366 additions and 5570 deletions
65
ChangeLog
65
ChangeLog
|
@ -1,3 +1,68 @@
|
|||
2007-12-06 Jan Dj,Ad(Brv <jan.h.d@swipnet.se>
|
||||
|
||||
* configure.in: Add AC_CONFIG_SRCDIR which was lost in the previous
|
||||
change.
|
||||
|
||||
2007-12-04 Jan Dj,Ad(Brv <jan.h.d@swipnet.se>
|
||||
|
||||
* configure.in: Give package name and verision to AC_INIT.
|
||||
|
||||
2007-12-03 Magnus Henoch <mange@freemail.hu>
|
||||
|
||||
* configure.in: Use PKG_CHECK_MODULES to check for D-Bus.
|
||||
|
||||
* configure: Regenerate.
|
||||
|
||||
2007-12-03 Michael Albinus <michael.albinus@gmx.de>
|
||||
|
||||
* configure.in: No need for DBUS_INFO anymore.
|
||||
|
||||
* configure: Regenerate.
|
||||
|
||||
* Makefile.in (INFO_FILES): Use dbus unconditionally.
|
||||
|
||||
2007-12-02 Michael Albinus <michael.albinus@gmx.de>
|
||||
|
||||
* configure.in: Add D-Bus checks. D-Bus is disabled by default.
|
||||
|
||||
* configure: Regenerate.
|
||||
|
||||
* Makefile.in (INFO_FILES): Add dbus.
|
||||
|
||||
2007-12-02 Romain Francoise <romain@orebokech.com>
|
||||
|
||||
* make-dist: Fix last change.
|
||||
|
||||
2007-11-28 Petr Salinger <Petr.Salinger@seznam.cz> (tiny change)
|
||||
|
||||
* configure.in: Add support for gnu-kfreebsd.
|
||||
|
||||
2007-11-28 Glenn Morris <rgm@gnu.org>
|
||||
|
||||
* make-dist: Add etc/nxml.
|
||||
|
||||
2007-11-24 Romain Francoise <romain@orebokech.com>
|
||||
|
||||
* Makefile.in (INFO_FILES): Add nxml-mode.
|
||||
|
||||
2007-11-23 Romain Francoise <romain@orebokech.com>
|
||||
|
||||
* make-dist: Include nXML. Don't try to copy FTP, it was removed on
|
||||
2007/10/17. Don't special-case alloca.c which is no longer in CVS.
|
||||
|
||||
2007-11-20 Andreas Schwab <schwab@suse.de>
|
||||
|
||||
* configure.in: Always include <resolv.h> when checking for
|
||||
res_init.
|
||||
|
||||
2007-11-17 Andreas Schwab <schwab@suse.de>
|
||||
|
||||
* update-subdirs: Atomically update subdirs.el.
|
||||
|
||||
2007-11-17 Glenn Morris <rgm@gnu.org>
|
||||
|
||||
* Makefile.in (check-declare): New target.
|
||||
|
||||
2007-11-07 Glenn Morris <rgm@gnu.org>
|
||||
|
||||
* configure.in: Deprecate Mac Carbon port.
|
||||
|
|
22
Makefile.in
22
Makefile.in
|
@ -138,11 +138,11 @@ man1dir=$(mandir)/man1
|
|||
# since there are now many packages documented with the texinfo
|
||||
# system, it is inappropriate to imply that it is part of Emacs.
|
||||
infodir=@infodir@
|
||||
INFO_FILES=ada-mode autotype calc ccmode cl dired-x ebrowse ediff efaq \
|
||||
eintr elisp emacs emacs-mime erc eshell eudc flymake forms \
|
||||
gnus idlwave info message mh-e newsticker org pcl-cvs pgg \
|
||||
rcirc reftex remember sc ses sieve speedbar tramp vip viper \
|
||||
widget woman smtpmail url
|
||||
INFO_FILES=ada-mode autotype calc ccmode cl dbus dired-x ebrowse ediff \
|
||||
efaq eintr elisp emacs emacs-mime erc eshell eudc flymake \
|
||||
forms gnus idlwave info message mh-e newsticker nxml-mode \
|
||||
org pcl-cvs pgg rcirc reftex remember sc ses sieve speedbar \
|
||||
tramp vip viper widget woman smtpmail url
|
||||
|
||||
# Directory for local state files for all programs.
|
||||
localstatedir=@localstatedir@
|
||||
|
@ -424,7 +424,7 @@ install-arch-dep: mkdir
|
|||
## Note that the Makefiles in the etc directory are potentially useful
|
||||
## in an installed Emacs, so should not be excluded.
|
||||
|
||||
## installuser:
|
||||
## installuser:
|
||||
## http://lists.gnu.org/archive/html/emacs-devel/2007-10/msg01672.html
|
||||
## Nuisance because i) it needs to be the user running install, so
|
||||
## configure can't set it; ii) can't (?) use the result of rule
|
||||
|
@ -811,3 +811,13 @@ bootstrap-clean-before-fast: FRC
|
|||
-(cd doc/lispref && $(MAKE) $(MFLAGS) clean)
|
||||
-(cd doc/lispintro && $(MAKE) $(MFLAGS) clean)
|
||||
(cd leim; $(MAKE) $(MFLAGS) clean)
|
||||
|
||||
.PHONY: check-declare
|
||||
|
||||
check-declare:
|
||||
@if [ ! -e $(srcdir)/src/emacs ]; then \
|
||||
echo "You must build Emacs to use this command"; \
|
||||
exit 1; \
|
||||
fi
|
||||
(cd leim; $(MAKE) $(MFLAGS) $@)
|
||||
(cd lisp; $(MAKE) $(MFLAGS) $@)
|
||||
|
|
|
@ -1,3 +1,18 @@
|
|||
2007-12-05 Glenn Morris <rgm@gnu.org>
|
||||
|
||||
* admin.el (set-version): Handle configure.in. Adapt for doc/
|
||||
directory layout for manuals.
|
||||
|
||||
2007-12-01 Reiner Steib <Reiner.Steib@gmx.de>
|
||||
|
||||
* FOR-RELEASE: Remove Gnus send mail problem. Other Gnus bugs
|
||||
have been fixed in Gnus CVS but have not yet been synched to
|
||||
Emacs.
|
||||
|
||||
2007-11-17 Glenn Morris <rgm@gnu.org>
|
||||
|
||||
* admin.el (process-lines): Move to ../lisp/subr.el.
|
||||
|
||||
2007-10-23 Glenn Morris <rgm@gnu.org>
|
||||
|
||||
* MAINTAINERS: Move here from ../.
|
||||
|
|
|
@ -89,23 +89,31 @@ http://lists.gnu.org/archive/html/emacs-devel/2007-05/msg00209.html
|
|||
** menu indications of key bindings for remapped commands
|
||||
http://lists.gnu.org/archive/html/emacs-devel/2007-05/msg01339.html
|
||||
|
||||
** tromey@redhat.com: two View-mode "quit" bugs
|
||||
http://lists.gnu.org/archive/html/emacs-devel/2007-07/msg00103.html
|
||||
|
||||
** rms: gnus-dired.el is a mistake. Those features should not
|
||||
be part of Gnus. They should be moved to some other part of Emacs.
|
||||
|
||||
** C-x v v no longer works the way it used to
|
||||
http://lists.gnu.org/archive/html/emacs-devel/2007-10/msg00785.html
|
||||
|
||||
** vc-diff no longer works the way it used to
|
||||
http://lists.gnu.org/archive/html/emacs-devel/2007-10/msg01753.html
|
||||
(vc-revert also needs the repository now with CVS)
|
||||
|
||||
** sdl.web@gmail.com, 28 Oct: window-system in face definition
|
||||
|
||||
** add README files for etc/gnus, etc/images/smilies/medium,grayscale
|
||||
update etc/images README files with any new images
|
||||
** Gnus archive groups are not shown at all if they are not at the default level.
|
||||
Fixed in Gnus CVS, but the patch has not been synched to Emacs yet:
|
||||
http://thread.gmane.org/gmane.emacs.gnus.general/65622/focus=65757
|
||||
|
||||
** Extra question asked when doing a reply in Gnus
|
||||
Fixed in Gnus CVS, but the patch has not been synched to Emacs yet:
|
||||
http://thread.gmane.org/gmane.emacs.gnus.general/65627/65768
|
||||
|
||||
** sdl.web@gmail.com, 30 Oct: ps-lpr-switches has no effect
|
||||
|
||||
** Stephen.Berman@gmx.net: minibuffer and current-local-map
|
||||
|
||||
** timh@insightful.com, 9 Nov: X-coding-system incompatibility, and workaround
|
||||
|
||||
** Get rid of old-style backquotes in cc-vars.el.
|
||||
ttn has a patch:
|
||||
http://lists.gnu.org/archive/html/emacs-devel/2007-10/msg02052.html
|
||||
|
||||
** Fix or document the shortcoming of easymenu and :suffix.
|
||||
http://lists.gnu.org/archive/html/emacs-devel/2007-11/msg01857.html
|
||||
|
||||
* DOCUMENTATION
|
||||
|
||||
|
|
|
@ -29,23 +29,6 @@
|
|||
|
||||
;;; Code:
|
||||
|
||||
(defun process-lines (program &rest args)
|
||||
"Execute PROGRAM with ARGS, returning its output as a list of lines.
|
||||
Signal an error if the program returns with a non-zero exit status."
|
||||
(with-temp-buffer
|
||||
(let ((status (apply 'call-process program nil (current-buffer) nil args)))
|
||||
(unless (eq status 0)
|
||||
(error "%s exited with status %s" program status))
|
||||
(goto-char (point-min))
|
||||
(let (lines)
|
||||
(while (not (eobp))
|
||||
(setq lines (cons (buffer-substring-no-properties
|
||||
(line-beginning-position)
|
||||
(line-end-position))
|
||||
lines))
|
||||
(forward-line 1))
|
||||
(nreverse lines)))))
|
||||
|
||||
(defun add-release-logs (root version)
|
||||
"Add \"Version VERSION released.\" change log entries in ROOT.
|
||||
Root must be the root of an Emacs source tree."
|
||||
|
@ -85,10 +68,14 @@ Root must be the root of an Emacs source tree."
|
|||
(set-version-in-file root "README" version
|
||||
(rx (and "version" (1+ space)
|
||||
(submatch (1+ (in "0-9."))))))
|
||||
(set-version-in-file root "man/emacs.texi" version
|
||||
(set-version-in-file root "configure.in" version
|
||||
(rx (and "AC_INIT" (1+ (not (in ?,)))
|
||||
?, (0+ space)
|
||||
(submatch (1+ (in "0-9."))))))
|
||||
(set-version-in-file root "doc/emacs/emacs.texi" version
|
||||
(rx (and "EMACSVER" (1+ space)
|
||||
(submatch (1+ (in "0-9."))))))
|
||||
(set-version-in-file root "lispref/elisp.texi" version
|
||||
(set-version-in-file root "doc/lispref/elisp.texi" version
|
||||
(rx (and "EMACSVER" (1+ space)
|
||||
(submatch (1+ (in "0-9."))))))
|
||||
(set-version-in-file root "lib-src/makefile.w32-in" version
|
||||
|
|
251
configure
vendored
251
configure
vendored
|
@ -1,6 +1,6 @@
|
|||
#! /bin/sh
|
||||
# Guess values for system-dependent variables and create Makefiles.
|
||||
# Generated by GNU Autoconf 2.61.
|
||||
# Generated by GNU Autoconf 2.61 for emacs 23.0.50.
|
||||
#
|
||||
# Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001,
|
||||
# 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
|
||||
|
@ -570,11 +570,11 @@ MAKEFLAGS=
|
|||
SHELL=${CONFIG_SHELL-/bin/sh}
|
||||
|
||||
# Identity of this package.
|
||||
PACKAGE_NAME=
|
||||
PACKAGE_TARNAME=
|
||||
PACKAGE_VERSION=
|
||||
PACKAGE_STRING=
|
||||
PACKAGE_BUGREPORT=
|
||||
PACKAGE_NAME='emacs'
|
||||
PACKAGE_TARNAME='emacs'
|
||||
PACKAGE_VERSION='23.0.50'
|
||||
PACKAGE_STRING='emacs 23.0.50'
|
||||
PACKAGE_BUGREPORT=''
|
||||
|
||||
ac_unique_file="src/lisp.h"
|
||||
ac_config_libobj_dir=src
|
||||
|
@ -692,6 +692,8 @@ RSVG_CFLAGS
|
|||
RSVG_LIBS
|
||||
GTK_CFLAGS
|
||||
GTK_LIBS
|
||||
DBUS_CFLAGS
|
||||
DBUS_LIBS
|
||||
XFT_CFLAGS
|
||||
XFT_LIBS
|
||||
FREETYPE_CFLAGS
|
||||
|
@ -783,7 +785,7 @@ sharedstatedir='${prefix}/com'
|
|||
localstatedir='${prefix}/var'
|
||||
includedir='${prefix}/include'
|
||||
oldincludedir='/usr/include'
|
||||
docdir='${datarootdir}/doc/${PACKAGE}'
|
||||
docdir='${datarootdir}/doc/${PACKAGE_TARNAME}'
|
||||
infodir='${datarootdir}/info'
|
||||
htmldir='${docdir}'
|
||||
dvidir='${docdir}'
|
||||
|
@ -1247,7 +1249,7 @@ if test "$ac_init_help" = "long"; then
|
|||
# Omit some internal or obsolete options to make the list less imposing.
|
||||
# This message is too long to be a string in the A/UX 3.1 sh.
|
||||
cat <<_ACEOF
|
||||
\`configure' configures this package to adapt to many kinds of systems.
|
||||
\`configure' configures emacs 23.0.50 to adapt to many kinds of systems.
|
||||
|
||||
Usage: $0 [OPTION]... [VAR=VALUE]...
|
||||
|
||||
|
@ -1295,7 +1297,7 @@ Fine tuning of the installation directories:
|
|||
--infodir=DIR info documentation [DATAROOTDIR/info]
|
||||
--localedir=DIR locale-dependent data [DATAROOTDIR/locale]
|
||||
--mandir=DIR man documentation [DATAROOTDIR/man]
|
||||
--docdir=DIR documentation root [DATAROOTDIR/doc/PACKAGE]
|
||||
--docdir=DIR documentation root [DATAROOTDIR/doc/emacs]
|
||||
--htmldir=DIR html documentation [DOCDIR]
|
||||
--dvidir=DIR dvi documentation [DOCDIR]
|
||||
--pdfdir=DIR pdf documentation [DOCDIR]
|
||||
|
@ -1320,7 +1322,9 @@ _ACEOF
|
|||
fi
|
||||
|
||||
if test -n "$ac_init_help"; then
|
||||
|
||||
case $ac_init_help in
|
||||
short | recursive ) echo "Configuration of emacs 23.0.50:";;
|
||||
esac
|
||||
cat <<\_ACEOF
|
||||
|
||||
Optional Features:
|
||||
|
@ -1366,6 +1370,7 @@ Optional Packages:
|
|||
--without-xaw3d don't use Xaw3d
|
||||
--without-xim don't use X11 XIM
|
||||
--without-carbon don't use Carbon GUI on Mac OS X
|
||||
--without-dbus don't use D-Bus
|
||||
--with-x use the X Window System
|
||||
|
||||
Some influential environment variables:
|
||||
|
@ -1442,7 +1447,7 @@ fi
|
|||
test -n "$ac_init_help" && exit $ac_status
|
||||
if $ac_init_version; then
|
||||
cat <<\_ACEOF
|
||||
configure
|
||||
emacs configure 23.0.50
|
||||
generated by GNU Autoconf 2.61
|
||||
|
||||
Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001,
|
||||
|
@ -1456,7 +1461,7 @@ cat >config.log <<_ACEOF
|
|||
This file contains any messages produced by compilers while
|
||||
running configure, to aid debugging if configure makes a mistake.
|
||||
|
||||
It was created by $as_me, which was
|
||||
It was created by emacs $as_me 23.0.50, which was
|
||||
generated by GNU Autoconf 2.61. Invocation command line was
|
||||
|
||||
$ $0 $@
|
||||
|
@ -1792,6 +1797,14 @@ fi
|
|||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
@ -1807,6 +1820,7 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu
|
|||
ac_config_headers="$ac_config_headers src/config.h:src/config.in"
|
||||
|
||||
|
||||
|
||||
test "$program_prefix" != NONE &&
|
||||
program_transform_name="s&^&$program_prefix&;$program_transform_name"
|
||||
# Use a double $ so make ignores it.
|
||||
|
@ -2028,6 +2042,12 @@ if test "${with_carbon+set}" = set; then
|
|||
fi
|
||||
|
||||
|
||||
# Check whether --with-dbus was given.
|
||||
if test "${with_dbus+set}" = set; then
|
||||
withval=$with_dbus;
|
||||
fi
|
||||
|
||||
|
||||
# Check whether --enable-carbon-app was given.
|
||||
if test "${enable_carbon_app+set}" = set; then
|
||||
enableval=$enable_carbon_app; carbon_appdir_x=${enableval}
|
||||
|
@ -2278,6 +2298,19 @@ case "${canonical}" in
|
|||
esac
|
||||
;;
|
||||
|
||||
## FreeBSD kernel + glibc based userland
|
||||
*-*-kfreebsd*gnu* )
|
||||
opsys=gnu-kfreebsd
|
||||
case "${canonical}" in
|
||||
alpha*-*-kfreebsd*) machine=alpha ;;
|
||||
ia64-*-kfreebsd*) machine=ia64 ;;
|
||||
sparc64-*-kfreebsd*) machine=sparc ;;
|
||||
powerpc-*-kfreebsd*) machine=macppc ;;
|
||||
i[3456]86-*-kfreebsd*) machine=intel386 ;;
|
||||
amd64-*-kfreebsd*|x86_64-*-kfreebsd*) machine=amdx86-64 ;;
|
||||
esac
|
||||
;;
|
||||
|
||||
## NetBSD ports
|
||||
*-*-netbsd* )
|
||||
opsys=netbsd
|
||||
|
@ -12012,6 +12045,113 @@ _ACEOF
|
|||
fi
|
||||
fi
|
||||
|
||||
HAVE_DBUS=no
|
||||
if test "${with_dbus}" = "yes"; then
|
||||
|
||||
succeeded=no
|
||||
|
||||
if test -z "$PKG_CONFIG"; then
|
||||
# Extract the first word of "pkg-config", so it can be a program name with args.
|
||||
set dummy pkg-config; ac_word=$2
|
||||
{ echo "$as_me:$LINENO: checking for $ac_word" >&5
|
||||
echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }
|
||||
if test "${ac_cv_path_PKG_CONFIG+set}" = set; then
|
||||
echo $ECHO_N "(cached) $ECHO_C" >&6
|
||||
else
|
||||
case $PKG_CONFIG in
|
||||
[\\/]* | ?:[\\/]*)
|
||||
ac_cv_path_PKG_CONFIG="$PKG_CONFIG" # Let the user override the test with a path.
|
||||
;;
|
||||
*)
|
||||
as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
|
||||
for as_dir in $PATH
|
||||
do
|
||||
IFS=$as_save_IFS
|
||||
test -z "$as_dir" && as_dir=.
|
||||
for ac_exec_ext in '' $ac_executable_extensions; do
|
||||
if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
|
||||
ac_cv_path_PKG_CONFIG="$as_dir/$ac_word$ac_exec_ext"
|
||||
echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
|
||||
break 2
|
||||
fi
|
||||
done
|
||||
done
|
||||
IFS=$as_save_IFS
|
||||
|
||||
test -z "$ac_cv_path_PKG_CONFIG" && ac_cv_path_PKG_CONFIG="no"
|
||||
;;
|
||||
esac
|
||||
fi
|
||||
PKG_CONFIG=$ac_cv_path_PKG_CONFIG
|
||||
if test -n "$PKG_CONFIG"; then
|
||||
{ echo "$as_me:$LINENO: result: $PKG_CONFIG" >&5
|
||||
echo "${ECHO_T}$PKG_CONFIG" >&6; }
|
||||
else
|
||||
{ echo "$as_me:$LINENO: result: no" >&5
|
||||
echo "${ECHO_T}no" >&6; }
|
||||
fi
|
||||
|
||||
|
||||
fi
|
||||
|
||||
if test "$PKG_CONFIG" = "no" ; then
|
||||
HAVE_DBUS=no
|
||||
else
|
||||
PKG_CONFIG_MIN_VERSION=0.9.0
|
||||
if $PKG_CONFIG --atleast-pkgconfig-version $PKG_CONFIG_MIN_VERSION; then
|
||||
{ echo "$as_me:$LINENO: checking for dbus-1 >= 1.0" >&5
|
||||
echo $ECHO_N "checking for dbus-1 >= 1.0... $ECHO_C" >&6; }
|
||||
|
||||
if $PKG_CONFIG --exists "dbus-1 >= 1.0" 2>&5; then
|
||||
{ echo "$as_me:$LINENO: result: yes" >&5
|
||||
echo "${ECHO_T}yes" >&6; }
|
||||
succeeded=yes
|
||||
|
||||
{ echo "$as_me:$LINENO: checking DBUS_CFLAGS" >&5
|
||||
echo $ECHO_N "checking DBUS_CFLAGS... $ECHO_C" >&6; }
|
||||
DBUS_CFLAGS=`$PKG_CONFIG --cflags "dbus-1 >= 1.0"|sed -e 's,///*,/,g'`
|
||||
{ echo "$as_me:$LINENO: result: $DBUS_CFLAGS" >&5
|
||||
echo "${ECHO_T}$DBUS_CFLAGS" >&6; }
|
||||
|
||||
{ echo "$as_me:$LINENO: checking DBUS_LIBS" >&5
|
||||
echo $ECHO_N "checking DBUS_LIBS... $ECHO_C" >&6; }
|
||||
DBUS_LIBS=`$PKG_CONFIG --libs "dbus-1 >= 1.0"|sed -e 's,///*,/,g'`
|
||||
{ echo "$as_me:$LINENO: result: $DBUS_LIBS" >&5
|
||||
echo "${ECHO_T}$DBUS_LIBS" >&6; }
|
||||
else
|
||||
{ echo "$as_me:$LINENO: result: no" >&5
|
||||
echo "${ECHO_T}no" >&6; }
|
||||
DBUS_CFLAGS=""
|
||||
DBUS_LIBS=""
|
||||
## If we have a custom action on failure, don't print errors, but
|
||||
## do set a variable so people can do so.
|
||||
DBUS_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "dbus-1 >= 1.0"`
|
||||
|
||||
fi
|
||||
|
||||
|
||||
|
||||
else
|
||||
echo "*** Your version of pkg-config is too old. You need version $PKG_CONFIG_MIN_VERSION or newer."
|
||||
echo "*** See http://www.freedesktop.org/software/pkgconfig"
|
||||
fi
|
||||
fi
|
||||
|
||||
if test $succeeded = yes; then
|
||||
HAVE_DBUS=yes
|
||||
else
|
||||
HAVE_DBUS=no
|
||||
fi
|
||||
|
||||
if test "$HAVE_DBUS" = yes; then
|
||||
|
||||
cat >>confdefs.h <<\_ACEOF
|
||||
#define HAVE_DBUS 1
|
||||
_ACEOF
|
||||
|
||||
fi
|
||||
fi
|
||||
|
||||
HAVE_XAW3D=no
|
||||
if test x"${USE_X_TOOLKIT}" = xmaybe || test x"${USE_X_TOOLKIT}" = xLUCID; then
|
||||
if test "$with_xaw3d" != no; then
|
||||
|
@ -18962,13 +19102,11 @@ _ACEOF
|
|||
cat confdefs.h >>conftest.$ac_ext
|
||||
cat >>conftest.$ac_ext <<_ACEOF
|
||||
/* end confdefs.h. */
|
||||
#include <sys/types.h> /* for off_t */
|
||||
#include <stdio.h>
|
||||
#include <stdio.h>
|
||||
int
|
||||
main ()
|
||||
{
|
||||
int (*fp) (FILE *, off_t, int) = fseeko;
|
||||
return fseeko (stdin, 0, 0) && fp (stdin, 0, 0);
|
||||
return fseeko (stdin, 0, 0) && (fseeko) (stdin, 0, 0);
|
||||
;
|
||||
return 0;
|
||||
}
|
||||
|
@ -19008,13 +19146,11 @@ cat confdefs.h >>conftest.$ac_ext
|
|||
cat >>conftest.$ac_ext <<_ACEOF
|
||||
/* end confdefs.h. */
|
||||
#define _LARGEFILE_SOURCE 1
|
||||
#include <sys/types.h> /* for off_t */
|
||||
#include <stdio.h>
|
||||
#include <stdio.h>
|
||||
int
|
||||
main ()
|
||||
{
|
||||
int (*fp) (FILE *, off_t, int) = fseeko;
|
||||
return fseeko (stdin, 0, 0) && fp (stdin, 0, 0);
|
||||
return fseeko (stdin, 0, 0) && (fseeko) (stdin, 0, 0);
|
||||
;
|
||||
return 0;
|
||||
}
|
||||
|
@ -20046,52 +20182,19 @@ fi
|
|||
# Do we have res_init, for detecting changes in /etc/resolv.conf?
|
||||
|
||||
resolv=no
|
||||
{ echo "$as_me:$LINENO: checking for res_init" >&5
|
||||
echo $ECHO_N "checking for res_init... $ECHO_C" >&6; }
|
||||
if test "${ac_cv_func_res_init+set}" = set; then
|
||||
echo $ECHO_N "(cached) $ECHO_C" >&6
|
||||
else
|
||||
cat >conftest.$ac_ext <<_ACEOF
|
||||
cat >conftest.$ac_ext <<_ACEOF
|
||||
/* confdefs.h. */
|
||||
_ACEOF
|
||||
cat confdefs.h >>conftest.$ac_ext
|
||||
cat >>conftest.$ac_ext <<_ACEOF
|
||||
/* end confdefs.h. */
|
||||
/* Define res_init to an innocuous variant, in case <limits.h> declares res_init.
|
||||
For example, HP-UX 11i <limits.h> declares gettimeofday. */
|
||||
#define res_init innocuous_res_init
|
||||
|
||||
/* System header to define __stub macros and hopefully few prototypes,
|
||||
which can conflict with char res_init (); below.
|
||||
Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
|
||||
<limits.h> exists even on freestanding compilers. */
|
||||
|
||||
#ifdef __STDC__
|
||||
# include <limits.h>
|
||||
#else
|
||||
# include <assert.h>
|
||||
#endif
|
||||
|
||||
#undef res_init
|
||||
|
||||
/* Override any GCC internal prototype to avoid an error.
|
||||
Use char because int might match the return type of a GCC
|
||||
builtin and then its argument prototype would still apply. */
|
||||
#ifdef __cplusplus
|
||||
extern "C"
|
||||
#endif
|
||||
char res_init ();
|
||||
/* The GNU C library defines this for functions which it implements
|
||||
to always fail with ENOSYS. Some functions are actually named
|
||||
something starting with __ and the normal name is an alias. */
|
||||
#if defined __stub_res_init || defined __stub___res_init
|
||||
choke me
|
||||
#endif
|
||||
|
||||
#include <netinet/in.h>
|
||||
#include <arpa/nameser.h>
|
||||
#include <resolv.h>
|
||||
int
|
||||
main ()
|
||||
{
|
||||
return res_init ();
|
||||
return res_init();
|
||||
;
|
||||
return 0;
|
||||
}
|
||||
|
@ -20114,25 +20217,16 @@ eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
|
|||
test ! -s conftest.err
|
||||
} && test -s conftest$ac_exeext &&
|
||||
$as_test_x conftest$ac_exeext; then
|
||||
ac_cv_func_res_init=yes
|
||||
have_res_init=yes
|
||||
else
|
||||
echo "$as_me: failed program was:" >&5
|
||||
sed 's/^/| /' conftest.$ac_ext >&5
|
||||
|
||||
ac_cv_func_res_init=no
|
||||
have_res_init=no
|
||||
fi
|
||||
|
||||
rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
|
||||
conftest$ac_exeext conftest.$ac_ext
|
||||
fi
|
||||
{ echo "$as_me:$LINENO: result: $ac_cv_func_res_init" >&5
|
||||
echo "${ECHO_T}$ac_cv_func_res_init" >&6; }
|
||||
if test $ac_cv_func_res_init = yes; then
|
||||
have_res_init=yes
|
||||
else
|
||||
have_res_init=no
|
||||
fi
|
||||
|
||||
if test "$have_res_init" = no; then
|
||||
OLIBS="$LIBS"
|
||||
LIBS="$LIBS -lresolv"
|
||||
|
@ -20150,7 +20244,7 @@ cat >>conftest.$ac_ext <<_ACEOF
|
|||
int
|
||||
main ()
|
||||
{
|
||||
res_init();
|
||||
return res_init();
|
||||
;
|
||||
return 0;
|
||||
}
|
||||
|
@ -24356,6 +24450,11 @@ Read the emacs-devel archives for more information."
|
|||
echo
|
||||
fi
|
||||
|
||||
if test "$HAVE_DBUS" = yes && test "${opsys}" != "gnu-linux"; then
|
||||
echo "D-Bus integration has been tested for GNU/Linux only."
|
||||
echo
|
||||
fi
|
||||
|
||||
|
||||
# Remove any trailing slashes in these variables.
|
||||
test "${prefix}" != NONE &&
|
||||
|
@ -24785,7 +24884,7 @@ exec 6>&1
|
|||
# report actual input values of CONFIG_FILES etc. instead of their
|
||||
# values after options handling.
|
||||
ac_log="
|
||||
This file was extended by $as_me, which was
|
||||
This file was extended by emacs $as_me 23.0.50, which was
|
||||
generated by GNU Autoconf 2.61. Invocation command line was
|
||||
|
||||
CONFIG_FILES = $CONFIG_FILES
|
||||
|
@ -24838,7 +24937,7 @@ Report bugs to <bug-autoconf@gnu.org>."
|
|||
_ACEOF
|
||||
cat >>$CONFIG_STATUS <<_ACEOF
|
||||
ac_cs_version="\\
|
||||
config.status
|
||||
emacs config.status 23.0.50
|
||||
configured by $0, generated by GNU Autoconf 2.61,
|
||||
with options \\"`echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`\\"
|
||||
|
||||
|
@ -25102,6 +25201,8 @@ RSVG_CFLAGS!$RSVG_CFLAGS$ac_delim
|
|||
RSVG_LIBS!$RSVG_LIBS$ac_delim
|
||||
GTK_CFLAGS!$GTK_CFLAGS$ac_delim
|
||||
GTK_LIBS!$GTK_LIBS$ac_delim
|
||||
DBUS_CFLAGS!$DBUS_CFLAGS$ac_delim
|
||||
DBUS_LIBS!$DBUS_LIBS$ac_delim
|
||||
XFT_CFLAGS!$XFT_CFLAGS$ac_delim
|
||||
XFT_LIBS!$XFT_LIBS$ac_delim
|
||||
FREETYPE_CFLAGS!$FREETYPE_CFLAGS$ac_delim
|
||||
|
@ -25121,8 +25222,6 @@ KMEM_GROUP!$KMEM_GROUP$ac_delim
|
|||
GETLOADAVG_LIBS!$GETLOADAVG_LIBS$ac_delim
|
||||
GETOPT_H!$GETOPT_H$ac_delim
|
||||
GETOPTOBJS!$GETOPTOBJS$ac_delim
|
||||
version!$version$ac_delim
|
||||
configuration!$configuration$ac_delim
|
||||
_ACEOF
|
||||
|
||||
if test `sed -n "s/.*$ac_delim\$/X/p" conf$$subs.sed | grep -c X` = 97; then
|
||||
|
@ -25164,6 +25263,8 @@ _ACEOF
|
|||
ac_delim='%!_!# '
|
||||
for ac_last_try in false false false false false :; do
|
||||
cat >conf$$subs.sed <<_ACEOF
|
||||
version!$version$ac_delim
|
||||
configuration!$configuration$ac_delim
|
||||
canonical!$canonical$ac_delim
|
||||
srcdir!$srcdir$ac_delim
|
||||
lispdir!$lispdir$ac_delim
|
||||
|
@ -25187,7 +25288,7 @@ carbon_appdir!$carbon_appdir$ac_delim
|
|||
LTLIBOBJS!$LTLIBOBJS$ac_delim
|
||||
_ACEOF
|
||||
|
||||
if test `sed -n "s/.*$ac_delim\$/X/p" conf$$subs.sed | grep -c X` = 21; then
|
||||
if test `sed -n "s/.*$ac_delim\$/X/p" conf$$subs.sed | grep -c X` = 23; then
|
||||
break
|
||||
elif $ac_last_try; then
|
||||
{ { echo "$as_me:$LINENO: error: could not make $CONFIG_STATUS" >&5
|
||||
|
|
57
configure.in
57
configure.in
|
@ -24,8 +24,9 @@ dnl Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
|||
dnl Boston, MA 02110-1301, USA.
|
||||
|
||||
AC_PREREQ(2.61)dnl
|
||||
AC_INIT(src/lisp.h)
|
||||
AC_INIT(emacs, 23.0.50)
|
||||
AC_CONFIG_HEADER(src/config.h:src/config.in)
|
||||
AC_CONFIG_SRCDIR(src/lisp.h)
|
||||
|
||||
dnl Support for --program-prefix, --program-suffix and
|
||||
dnl --program-transform-name options
|
||||
|
@ -120,6 +121,7 @@ EMACS_ARG_N([toolkit-scroll-bars],[don't use Motif or Xaw3d scroll bars])
|
|||
EMACS_ARG_N([xaw3d],[don't use Xaw3d])
|
||||
EMACS_ARG_N([xim],[don't use X11 XIM])
|
||||
EMACS_ARG_N([carbon],[don't use Carbon GUI on Mac OS X])
|
||||
EMACS_ARG_N([dbus],[don't use D-Bus])
|
||||
|
||||
AC_ARG_ENABLE(carbon-app,
|
||||
[AS_HELP_STRING([--enable-carbon-app@<:@=DIR@:>@],
|
||||
|
@ -253,6 +255,19 @@ case "${canonical}" in
|
|||
esac
|
||||
;;
|
||||
|
||||
## FreeBSD kernel + glibc based userland
|
||||
*-*-kfreebsd*gnu* )
|
||||
opsys=gnu-kfreebsd
|
||||
case "${canonical}" in
|
||||
alpha*-*-kfreebsd*) machine=alpha ;;
|
||||
ia64-*-kfreebsd*) machine=ia64 ;;
|
||||
sparc64-*-kfreebsd*) machine=sparc ;;
|
||||
powerpc-*-kfreebsd*) machine=macppc ;;
|
||||
i[3456]86-*-kfreebsd*) machine=intel386 ;;
|
||||
amd64-*-kfreebsd*|x86_64-*-kfreebsd*) machine=amdx86-64 ;;
|
||||
esac
|
||||
;;
|
||||
|
||||
## NetBSD ports
|
||||
*-*-netbsd* )
|
||||
opsys=netbsd
|
||||
|
@ -1193,7 +1208,7 @@ dnl see the `changequote' comment above.
|
|||
machine=amdx86-64 opsys=gnu-linux
|
||||
;;
|
||||
|
||||
## Tensilica Xtensa Linux-based GNU system
|
||||
## Tensilica Xtensa Linux-based GNU system
|
||||
xtensa-*-linux-gnu* )
|
||||
machine=xtensa opsys=gnu-linux
|
||||
;;
|
||||
|
@ -1351,11 +1366,11 @@ AC_PATH_PROG(GZIP_PROG, gzip)
|
|||
|
||||
## Need makeinfo >= 4.6 (?) to build the manuals.
|
||||
AC_PATH_PROG(MAKEINFO, makeinfo, no)
|
||||
dnl By this stage, configure has already checked for egrep and set EGREP,
|
||||
dnl By this stage, configure has already checked for egrep and set EGREP,
|
||||
dnl or exited with an error if no egrep was found.
|
||||
if test "$MAKEINFO" != "no" && \
|
||||
test x"`$MAKEINFO --version 2> /dev/null | $EGREP 'texinfo[[^0-9]]*([[1-4]][[0-9]]+|[[5-9]]|4\.[[6-9]]|4\.[[1-5]][[0-9]]+)'`" = x; then
|
||||
MAKEINFO=no
|
||||
MAKEINFO=no
|
||||
fi
|
||||
|
||||
if test "$MAKEINFO" = "no"; then
|
||||
|
@ -1547,7 +1562,7 @@ dnl Do this early because it can frob feature test macros for Unix-98 &c.
|
|||
AC_SYS_LARGEFILE
|
||||
|
||||
|
||||
### The standard library on x86-64 GNU/Linux distributions can
|
||||
### The standard library on x86-64 GNU/Linux distributions can
|
||||
### be located in either /usr/lib64 or /usr/lib.
|
||||
case "${canonical}" in
|
||||
x86_64-*-linux-gnu* )
|
||||
|
@ -1898,7 +1913,7 @@ dnl USE_X_TOOLKIT is set.
|
|||
no ) USE_X_TOOLKIT=none ;;
|
||||
dnl If user did not say whether to use a toolkit, make this decision later:
|
||||
dnl use the toolkit if we have gtk, or X11R5 or newer.
|
||||
* )
|
||||
* )
|
||||
if test x"$with_gtk" = xyes; then
|
||||
USE_X_TOOLKIT=none
|
||||
else
|
||||
|
@ -1917,7 +1932,7 @@ esac
|
|||
if test "$window_system" = none && test "X$with_x" != "Xno"; then
|
||||
AC_CHECK_PROG(HAVE_XSERVER, X, true, false)
|
||||
if test "$HAVE_XSERVER" = true ||
|
||||
test -n "$DISPLAY" ||
|
||||
test -n "$DISPLAY" ||
|
||||
test "`echo /usr/lib/libX11.*`" != "/usr/lib/libX11.*"; then
|
||||
AC_MSG_ERROR([You seem to be running X, but no X development libraries
|
||||
were found. You should install the relevant development files for X
|
||||
|
@ -2252,6 +2267,17 @@ if test "${HAVE_GTK}" = "yes"; then
|
|||
fi
|
||||
fi
|
||||
|
||||
dnl D-Bus has been tested under GNU/Linux only. Must be adapted for
|
||||
dnl other platforms. Support for higher D-Bus versions but 1.0 is
|
||||
dnl also not configured.
|
||||
HAVE_DBUS=no
|
||||
if test "${with_dbus}" = "yes"; then
|
||||
PKG_CHECK_MODULES(DBUS, dbus-1 >= 1.0, HAVE_DBUS=yes, HAVE_DBUS=no)
|
||||
if test "$HAVE_DBUS" = yes; then
|
||||
AC_DEFINE(HAVE_DBUS, 1, [Define to 1 if using D-Bus.])
|
||||
fi
|
||||
fi
|
||||
|
||||
dnl Do not put whitespace before the #include statements below.
|
||||
dnl Older compilers (eg sunos4 cc) choke on it.
|
||||
HAVE_XAW3D=no
|
||||
|
@ -2836,15 +2862,19 @@ AC_CHECK_LIB(ncurses, tparm)
|
|||
# Do we have res_init, for detecting changes in /etc/resolv.conf?
|
||||
|
||||
resolv=no
|
||||
AC_CHECK_FUNC(res_init, have_res_init=yes, have_res_init=no)
|
||||
AC_TRY_LINK([#include <netinet/in.h>
|
||||
#include <arpa/nameser.h>
|
||||
#include <resolv.h>],
|
||||
[return res_init();],
|
||||
have_res_init=yes, have_res_init=no)
|
||||
if test "$have_res_init" = no; then
|
||||
OLIBS="$LIBS"
|
||||
LIBS="$LIBS -lresolv"
|
||||
AC_MSG_CHECKING(for res_init with -lresolv)
|
||||
AC_TRY_LINK([#include <netinet/in.h>
|
||||
#include <arpa/nameser.h>
|
||||
#include <resolv.h> ],
|
||||
[res_init();],
|
||||
#include <resolv.h>],
|
||||
[return res_init();],
|
||||
have_res_init=yes, have_res_init=no)
|
||||
AC_MSG_RESULT($have_res_init)
|
||||
if test "$have_res_init" = yes ; then
|
||||
|
@ -3538,7 +3568,12 @@ if test "$HAVE_CARBON" = "yes"; then
|
|||
known problems. It is not recommended for use by non-developers.
|
||||
Read the emacs-devel archives for more information."
|
||||
echo
|
||||
fi
|
||||
fi
|
||||
|
||||
if test "$HAVE_DBUS" = yes && test "${opsys}" != "gnu-linux"; then
|
||||
echo "D-Bus integration has been tested for GNU/Linux only."
|
||||
echo
|
||||
fi
|
||||
|
||||
|
||||
# Remove any trailing slashes in these variables.
|
||||
|
|
|
@ -1,12 +1,50 @@
|
|||
2007-11-26 Richard Stallman <rms@gnu.org>
|
||||
|
||||
* help.texi (Help Echo): Cleanups.
|
||||
|
||||
2007-11-23 Thien-Thi Nguyen <ttn@gnuvola.org>
|
||||
|
||||
* files.texi (Why Version Control?): Fix typo.
|
||||
(VCS Concepts): Fix typos; small tense fix.
|
||||
(Selecting a Fileset): Fix typos; small rewording.
|
||||
(Log Buffer): Likewise.
|
||||
(Old Revisions): Likewise.
|
||||
|
||||
2007-11-17 Eli Zaretskii <eliz@gnu.org>
|
||||
|
||||
* mule.texi (Communication Coding): Fix wording of last change.
|
||||
|
||||
2007-11-16 Werner Lemberg <wl@gnu.org>
|
||||
|
||||
* custom.texi (Specifying File Variables), major.texi (Choosing
|
||||
Modes): Mention '\" in man pages.
|
||||
|
||||
2007-11-16 Kenichi Handa <handa@ni.aist.go.jp>
|
||||
|
||||
* mule.texi (Communication Coding): Document x-select-request-type.
|
||||
|
||||
* frames.texi (Cut/Paste Other App): Mention x-select-request-type.
|
||||
|
||||
2007-11-15 Francesco Potort,Al(B <pot@gnu.org>
|
||||
|
||||
* maintaining.texi (TEXTAGS): note that you can use "-" for stdout with
|
||||
--output=file.
|
||||
|
||||
2007-11-13 Martin Rudalics <rudalics@gmx.at>
|
||||
|
||||
* help.texi (Help Summary, Apropos, Misc Help): Fix typos.
|
||||
(Help Echo): Avoid mentioning the term "region" here and
|
||||
consistently use the term "active text".
|
||||
|
||||
2007-11-11 Glenn Morris <rgm@gnu.org>
|
||||
|
||||
* calendar.texi (Special Diary Entries): Fix Thanksgiving example.
|
||||
|
||||
2007-11-10 Paul Pogonyshev <pogonyshev@gmx.net>
|
||||
|
||||
* search.texi (Query Replace): Mention
|
||||
`query-replace-show-replacement'.
|
||||
|
||||
2007-11-09 Reiner Steib <Reiner.Steib@gmx.de>
|
||||
|
||||
* gnus.texi, gnus-faq.texi, message.texi: Bump version to 5.10.9.
|
||||
|
||||
2007-11-09 Nick Roberts <nickrob@snap.net.nz>
|
||||
|
||||
* building.texi (Watch Expressions): Remove obscure sentence.
|
||||
|
@ -20,14 +58,6 @@
|
|||
|
||||
* cmdargs.texi (Misc Variables): Remove Sun windows info.
|
||||
|
||||
2007-10-27 Emanuele Giaquinta <e.giaquinta@glauco.it> (tiny change)
|
||||
|
||||
* gnus-faq.texi ([5.12]): Remove reference to discontinued service.
|
||||
|
||||
2007-10-27 Reiner Steib <Reiner.Steib@gmx.de>
|
||||
|
||||
* gnus.texi (Troubleshooting): Adjust Gnus version number.
|
||||
|
||||
2007-10-30 Nick Roberts <nickrob@snap.net.nz>
|
||||
|
||||
* building.texi (Watch Expressions): Describe gdb-delete-out-of-scope.
|
||||
|
@ -37,11 +67,6 @@
|
|||
* misc.texi (Directory Tracking): Explain a bit more about
|
||||
dirtrack-mode.
|
||||
|
||||
2007-10-29 Richard Stallman <rms@gnu.org>
|
||||
|
||||
* widget.texi (Introduction): Delete discussion of implementation
|
||||
internals.
|
||||
|
||||
2007-10-25 Glenn Morris <rgm@gnu.org>
|
||||
|
||||
* fortran-xtra.texi (Fortran): F90 mode handles F2003.
|
||||
|
|
|
@ -1397,19 +1397,19 @@ nonmarking (with @samp{&}) when possible.
|
|||
specifies a regularly occurring event by offsets specified in days,
|
||||
weeks, and months. It is comparable to a crontab entry interpreted by
|
||||
the @code{cron} utility. Here is a nonmarking, floating diary entry
|
||||
that applies to the last Thursday in November:
|
||||
that applies to the fourth Thursday in November:
|
||||
|
||||
@findex diary-float
|
||||
@example
|
||||
&%%(diary-float 11 4 -1) American Thanksgiving
|
||||
&%%(diary-float 11 4 4) American Thanksgiving
|
||||
@end example
|
||||
|
||||
@noindent
|
||||
The 11 specifies November (the eleventh month), the 4 specifies Thursday
|
||||
(the fourth day of the week, where Sunday is numbered zero), and the
|
||||
@minus{}1 specifies ``last'' (1 would mean ``first,'' 2 would mean
|
||||
``second,'' @minus{}2 would mean ``second-to-last,'' and so on). The
|
||||
month can be a single month or a list of months. Thus you could change
|
||||
second 4 specifies the fourth Thursday (1 would mean ``first,'' 2 would
|
||||
mean ``second,'' @minus{}2 would mean ``second-to-last,'' and so on).
|
||||
The month can be a single month or a list of months. Thus you could change
|
||||
the 11 above to @samp{'(1 2 3)} and have the entry apply to the last
|
||||
Thursday of January, February, and March. If the month is @code{t}, the
|
||||
entry applies to all months of the year.@refill
|
||||
|
|
|
@ -1099,10 +1099,14 @@ particular Lisp file. @xref{Enabling Multibyte}.
|
|||
the first line as well.
|
||||
|
||||
@cindex shell scripts, and local file variables
|
||||
@cindex man pages, and local file variables
|
||||
In shell scripts, the first line is used to identify the script
|
||||
interpreter, so you cannot put any local variables there. To
|
||||
accommodate this, Emacs looks for local variable specifications in the
|
||||
@emph{second} line when the first line specifies an interpreter.
|
||||
The same is true for man pages which start with the magic string
|
||||
@samp{'\"} to specify a list of troff preprocessors (not all do,
|
||||
however).
|
||||
|
||||
A @dfn{local variables list} goes near the end of the file, in the
|
||||
last page. (It is often best to put it on a page by itself.) The local
|
||||
|
|
|
@ -1270,7 +1270,7 @@ you want to use.
|
|||
@subsubsection Understanding the problems it addresses
|
||||
|
||||
Version control systems provide you with three important capabilities:
|
||||
@dfn{reversibility}. @dfn{concurrency}, and @dfn{history}.
|
||||
@dfn{reversibility}, @dfn{concurrency}, and @dfn{history}.
|
||||
|
||||
The most basic capability you get from a version-control system is
|
||||
reversibility, the ability to back up to a saved, known-good state when
|
||||
|
@ -1298,7 +1298,7 @@ git, and Mercurial.
|
|||
@cindex SCCS
|
||||
SCCS was the first version-control system ever built, and was long ago
|
||||
superseded by later and more advanced ones; Emacs supports it only for
|
||||
backward compatibility and historical reasons. VC compensates for
|
||||
backward compatibility and historical reasons. VC compensates for
|
||||
certain features missing in SCCS (snapshots, for example) by
|
||||
implementing them itself, but some other VC features, such as multiple
|
||||
branches, are not available with SCCS. Since SCCS is non-free you
|
||||
|
@ -1439,7 +1439,7 @@ happen when you check in a change to a file that conflicts with a change
|
|||
checked in by someone else after your checkout. Both kinds of conflict
|
||||
have to be resolved by human judgment and communication.
|
||||
|
||||
SCCS always uses locking. RCS is lock-based by default but can be
|
||||
SCCS always uses locking. RCS is lock-based by default but can be
|
||||
told to operate in a merging style. CVS and Subversion are
|
||||
merge-based by default but can be told to operate in a locking mode.
|
||||
Most later version-control systems, such as GNU Arch, git, and
|
||||
|
@ -1463,7 +1463,7 @@ between them as much as possible.
|
|||
and other operations are @dfn{file-based}; each file has its own
|
||||
@dfn{master file} with its own comment and revision history separate
|
||||
from that of all other files in the system. Later systems, beginning
|
||||
with Subversion, became @dfn{changeset-based}; a checkin under these
|
||||
with Subversion, are @dfn{changeset-based}; a checkin under these
|
||||
may include changes to several files and that change set is treated as
|
||||
a unit by the system. Any comment associated with the change belongs
|
||||
to no single file, but is attached to the changeset itself.
|
||||
|
@ -1489,7 +1489,7 @@ systems and a bit archaic; nowadays those operations are usually called
|
|||
Early version-control systems were designed around a @dfn{centralized}
|
||||
model in which each project has only one repository used by all
|
||||
developers. SCCS, RCS, CVS, and Subversion share this kind of model.
|
||||
It has two important problems. One is that a single repository is a
|
||||
It has two important problems. One is that a single repository is a
|
||||
single point of failure---if the repository server is down all work
|
||||
stops. The other is that you need to be connected live to the server to
|
||||
do checkins and checkouts; if you're offline, you can't work.
|
||||
|
@ -1622,7 +1622,7 @@ your fileset is the marked files only.
|
|||
If they are not, VC mode will fail when you attempt to execute
|
||||
a command on the fileset.
|
||||
|
||||
In VC, filesets, are, essentially, a way to pass multiple file
|
||||
VC filesets are, essentially, a way to pass multiple file
|
||||
arguments as a group to underlying version-control commands. For
|
||||
example, on Subversion a checkin with more than one file in its
|
||||
fileset will become a joint commit, as though you had typed
|
||||
|
@ -1640,7 +1640,7 @@ version-control systems.
|
|||
|
||||
Emacs uses the concept of named filesets elsewhere
|
||||
(@pxref{Filesets}) to allow you to view and visit files in functional
|
||||
groups. Unlike those, VC filesets are not named and don't persist
|
||||
groups. Unlike those, VC filesets are not named and don't persist
|
||||
across sessions.
|
||||
|
||||
@node Doing The Right Thing
|
||||
|
@ -1803,8 +1803,8 @@ are set around the entire contents of the buffer so that it is easy to
|
|||
kill the contents of the buffer with @kbd{C-w}.
|
||||
|
||||
@findex log-edit-insert-changelog
|
||||
If you work by writing entries in the @file{ChangeLog}
|
||||
(@pxref{Change Log}) and then commit the change under revision
|
||||
If you work by first writing entries in the @file{ChangeLog}
|
||||
(@pxref{Change Log}) and afterwards committing the change under revision
|
||||
control, you can generate the Log Edit text from the ChangeLog using
|
||||
@kbd{C-c C-a} (@kbd{log-edit-insert-changelog}). This looks for
|
||||
entries for the file(s) concerned in the top entry in the ChangeLog
|
||||
|
@ -1845,7 +1845,7 @@ time to complete the check-in.
|
|||
convenient to specify the same log entry for many of the files. (This
|
||||
is the normal way to do things on a changeset-oriented system, where
|
||||
comments are attached to changesets rather than the history of
|
||||
individual files.) The most convenient way to do this is to mark all the
|
||||
individual files.) The most convenient way to do this is to mark all the
|
||||
files in VC-Dired mode and check in from there; the log buffer will
|
||||
carry the fileset information with it and do a group commit when you
|
||||
confirm it with @kbd{C-c C-c}.
|
||||
|
@ -1952,15 +1952,15 @@ revisions are not, in general, present as files on your disk.)
|
|||
@kindex C-x v g
|
||||
For some back ends, you can display the file @dfn{annotated} with
|
||||
per-line revision information and using colors to enhance the visual
|
||||
appearance, with the command @kbd{M-x vc-annotate}. It creates a new
|
||||
appearance, with the command @kbd{M-x vc-annotate}. This creates a new
|
||||
buffer (the ``annotate buffer'') displaying the file's text, with each
|
||||
part colored to show how old it is. Text colored red is new, blue means
|
||||
old, and intermediate colors indicate intermediate ages. By default,
|
||||
the color is scaled over the full range of ages, such that the oldest
|
||||
changes are blue, and the newest changes are red.
|
||||
|
||||
When you give a prefix argument to this command, it uses the
|
||||
minibuffer to read two arguments: the ID of which revision to display and
|
||||
When you give a prefix argument to this command, Emacs reads two
|
||||
arguments using the minibuffer: the ID of which revision to display and
|
||||
annotate (instead of the current file contents), and the time span in
|
||||
days the color range should cover.
|
||||
|
||||
|
@ -2006,7 +2006,7 @@ return to your working revision.
|
|||
@node Secondary VC Commands
|
||||
@subsection The Secondary Commands of VC
|
||||
|
||||
This section explains the secondary commands of VC; those that you might
|
||||
This section explains the secondary commands of VC, those that you might
|
||||
use once a day.
|
||||
|
||||
@menu
|
||||
|
|
|
@ -224,9 +224,12 @@ for text in the cut buffer. If neither of those sources provides text
|
|||
to yank, the kill ring contents are used.
|
||||
|
||||
The standard coding system for X Window System selections is
|
||||
@code{compound-text-with-extensions}. To specify another coding
|
||||
system for selections, use @kbd{C-x @key{RET} x} or @kbd{C-x @key{RET}
|
||||
X}. @xref{Communication Coding}.
|
||||
@code{compound-text-with-extensions}. You may find that the pasted
|
||||
text is not what you expected. In such a case, you can specify
|
||||
another coding system for selections by @kbd{C-x @key{RET} x} or
|
||||
@kbd{C-x @key{RET} X}, or can request the different data type by
|
||||
modifying the variable @code{x-select-request-type}.
|
||||
@xref{Communication Coding}.
|
||||
|
||||
@node Word and Line Mouse
|
||||
@subsection Mouse Commands for Words and Lines
|
||||
|
|
|
@ -155,10 +155,10 @@ Display information on the character sets, coding systems, and input
|
|||
methods used in language environment @var{language-env}
|
||||
(@code{describe-language-environment}).
|
||||
@item C-h F @var{function} @key{RET}
|
||||
Enter Info and goes to the node that documents the Emacs function
|
||||
Enter Info and go to the node that documents the Emacs function
|
||||
@var{function} (@code{Info-goto-emacs-command-node}).
|
||||
@item C-h K @var{key}
|
||||
Enter Info and goes to the node that documents the key sequence
|
||||
Enter Info and go to the node that documents the key sequence
|
||||
@var{key} (@code{Info-goto-emacs-key-command-node}).
|
||||
@item C-h S @var{symbol} @key{RET}
|
||||
Display the Info documentation on symbol @var{symbol} according to the
|
||||
|
@ -296,8 +296,8 @@ be found by this command.
|
|||
Search for user-option variables whose names match @var{pattern}.
|
||||
|
||||
@item M-x apropos-value @key{RET} @var{pattern} @key{RET}
|
||||
Search for functions whose definitions @var{pattern}, and variables
|
||||
whose values match @var{pattern}.
|
||||
Search for functions whose definitions match @var{pattern}, and
|
||||
variables whose values match @var{pattern}.
|
||||
|
||||
@item C-h d @var{pattern} @key{RET}
|
||||
Search for functions and variables whose @strong{documentation
|
||||
|
@ -545,9 +545,9 @@ documentation of @var{function} or @var{key}.
|
|||
@findex info-lookup-symbol
|
||||
When editing a program, if you have an Info version of the manual
|
||||
for the programming language, you can use @kbd{C-h S}
|
||||
(@code{info-lookup-symbol}) to find symbol (keyword, function or
|
||||
variable) in the proper manual. The details of how this command works
|
||||
depend on the major mode.
|
||||
(@code{info-lookup-symbol}) to find an entry for a symbol (keyword,
|
||||
function or variable) in the proper manual. The details of how this
|
||||
command works depend on the major mode.
|
||||
|
||||
@kindex C-h l
|
||||
@findex view-lossage
|
||||
|
@ -642,24 +642,23 @@ Emacs (@code{describe-no-warranty}).
|
|||
|
||||
@cindex tooltips
|
||||
@cindex balloon help
|
||||
When a region of text is ``active,'' so that you can select it with
|
||||
the mouse or a key like @kbd{RET}, it often has associated help text.
|
||||
For instance, most parts of the mode line have help text. On
|
||||
graphical displays, the help text is displayed as a ``tooltip''
|
||||
(sometimes known as ``balloon help''), when you move the mouse over
|
||||
the active text. @xref{Tooltips}. On some systems, it is shown in
|
||||
the echo area. On text-only terminals, if Emacs cannot follow the
|
||||
mouse, it cannot show the help text on mouse-over.
|
||||
When text on the screen is ``active'', so that it does something
|
||||
special in response to mouse clicks or @kbd{RET}, it often has associated
|
||||
help text. For instance, most parts of the mode line have help text. On
|
||||
terminals that support mouse tracking, Emacs displays the help text as a
|
||||
``tooltip'' (sometimes known as ``balloon help'') or in the echo area,
|
||||
whenever you leave the mouse stationary over the active text.
|
||||
@xref{Tooltips}.
|
||||
|
||||
@kindex C-h .
|
||||
@findex display-local-help
|
||||
@vindex help-at-pt-display-when-idle
|
||||
You can also access text region help info using the keyboard. The
|
||||
command @kbd{C-h .} (@code{display-local-help}) displays any help text
|
||||
associated with the text at point, using the echo area. If you want
|
||||
help text to be displayed automatically whenever it is available at
|
||||
point, set the variable @code{help-at-pt-display-when-idle} to
|
||||
@code{t}.
|
||||
If your terminal doesn't support mouse-tracking, you can display the
|
||||
help text for active buffer text using the keyboard. @kbd{C-h .}
|
||||
(@code{display-local-help}) displays any help text associated with the
|
||||
character after point, using the echo area. To display help text
|
||||
automatically whenever it is available on the character after point, set
|
||||
the variable @code{help-at-pt-display-when-idle} to @code{t}.
|
||||
|
||||
@ignore
|
||||
arch-tag: 6f33ab62-bc75-4367-8057-fd67cc15c3a1
|
||||
|
|
|
@ -367,7 +367,10 @@ etags @var{inputfiles}@dots{}
|
|||
|
||||
@noindent
|
||||
The @code{etags} program reads the specified files, and writes a tags
|
||||
table named @file{TAGS} in the current working directory.
|
||||
table named @file{TAGS} in the current working directory. You can
|
||||
optionally specify a different file name for the tags table by using the
|
||||
@samp{--output=@var{file}} option; specifying @file{-} as a file name
|
||||
prints the tags table to standard output.
|
||||
|
||||
If the specified files don't exist, @code{etags} looks for
|
||||
compressed versions of them and uncompresses them to read them. Under
|
||||
|
@ -406,7 +409,8 @@ well as the files it directly contains.
|
|||
directory where the tags file was initially written. This way, you can
|
||||
move an entire directory tree containing both the tags file and the
|
||||
source files, and the tags file will still refer correctly to the source
|
||||
files. If the tags file is in @file{/dev}, however, the file names are
|
||||
files. If the tags file is @file{-} or is in the @file{/dev} directory,
|
||||
however, the file names are
|
||||
made relative to the current working directory. This is useful, for
|
||||
example, when writing the tags to @file{/dev/stdout}.
|
||||
|
||||
|
|
|
@ -174,7 +174,10 @@ interpreter program names and major modes.
|
|||
systems) use the @samp{-*-} feature on the first line, because the
|
||||
system would get confused when running the interpreter. So Emacs looks
|
||||
for @samp{-*-} on the second line in such files as well as on the
|
||||
first line.
|
||||
first line. The same is true for man pages which start with the magic
|
||||
string @samp{'\"} to specify a list of troff preprocessors (not all do,
|
||||
however).
|
||||
|
||||
|
||||
@vindex default-major-mode
|
||||
When you visit a file that does not specify a major mode to use, or
|
||||
|
|
|
@ -1086,6 +1086,20 @@ you override it by using the command again. The command @kbd{C-x
|
|||
@key{RET} X} (@code{set-next-selection-coding-system}) specifies the
|
||||
coding system for the next selection made in Emacs or read by Emacs.
|
||||
|
||||
@vindex x-select-request-type
|
||||
The variable @code{x-select-request-type} specifies the data type to
|
||||
request from the X Window System for receiving text selections from
|
||||
other applications. If the value is @code{nil} (the default), Emacs
|
||||
tries @code{COMPOUND_TEXT} and @code{UTF8_STRING}, in this order, and
|
||||
uses various heuristics to choose the more appropriate of the two
|
||||
results; if none of these succeed, Emacs falls back on @code{STRING}.
|
||||
If the value of @code{x-select-request-type} is one of the symbols
|
||||
@code{COMPOUND_TEXT}, @code{UTF8_STRING}, @code{STRING}, or
|
||||
@code{TEXT}, Emacs uses only that request type. If the value is a
|
||||
list of some of these symbols, Emacs tries only the request types in
|
||||
the list, in order, until one of them succeeds, or until the list is
|
||||
exhausted.
|
||||
|
||||
@kindex C-x RET p
|
||||
@findex set-buffer-process-coding-system
|
||||
The command @kbd{C-x @key{RET} p} (@code{set-buffer-process-coding-system})
|
||||
|
@ -1115,6 +1129,15 @@ specified by one of the environment variables @env{LC_ALL},
|
|||
specified above, whose value is nonempty is the one that determines
|
||||
the text representation.)
|
||||
|
||||
@vindex x-select-request-type
|
||||
The variable @code{x-select-request-type} specifies a selection data
|
||||
type of selection to request from the X server. The default value is
|
||||
@code{nil}, which means Emacs tries @code{COMPOUND_TEXT} and
|
||||
@code{UTF8_STRING}, and uses whichever result seems more appropriate.
|
||||
You can explicitly specify the data type by setting the variable to
|
||||
one of the symbols @code{COMPOUND_TEXT}, @code{UTF8_STRING},
|
||||
@code{STRING} and @code{TEXT}.
|
||||
|
||||
@node File Name Coding
|
||||
@section Coding Systems for File Names
|
||||
|
||||
|
|
|
@ -1,3 +1,71 @@
|
|||
2007-12-04 Richard Stallman <rms@gnu.org>
|
||||
|
||||
* objects.texi (Symbol Type): Fix typo.
|
||||
|
||||
2007-12-03 Richard Stallman <rms@gnu.org>
|
||||
|
||||
* hooks.texi (Standard Hooks): Add link to Hooks for Loading.
|
||||
|
||||
2007-12-01 Glenn Morris <rgm@gnu.org>
|
||||
|
||||
* functions.texi (Declaring Functions): Improve previous change.
|
||||
|
||||
2007-11-30 Glenn Morris <rgm@gnu.org>
|
||||
|
||||
* functions.texi (Declaring Functions): Add optional fourth
|
||||
argument of declare-function, and setting third argument to `t'.
|
||||
|
||||
2007-11-29 Richard Stallman <rms@gnu.org>
|
||||
|
||||
* customize.texi (Composite Types): Document `group' type.
|
||||
|
||||
2007-11-29 Glenn Morris <rgm@gnu.org>
|
||||
|
||||
* functions.texi (Declaring Functions): Add findex. Mention
|
||||
`external' files.
|
||||
|
||||
2007-11-26 Juanma Barranquero <lekktu@gmail.com>
|
||||
|
||||
* functions.texi (Declaring Functions): Fix directive.
|
||||
|
||||
2007-11-25 Richard Stallman <rms@gnu.org>
|
||||
|
||||
* help.texi (Help Functions): Clean up last change.
|
||||
|
||||
* advice.texi (Preactivation, Activation of Advice): Minor cleanup.
|
||||
|
||||
* loading.texi (Named Features): Minor cleanup.
|
||||
|
||||
* macros.texi (Eval During Expansion): Minor cleanup.
|
||||
|
||||
* variables.texi (Variable Aliases): Minor cleanup.
|
||||
|
||||
2007-11-24 Richard Stallman <rms@gnu.org>
|
||||
|
||||
* functions.texi (Declaring Functions): Clarify previous change.
|
||||
|
||||
* compile.texi (Compiler Errors): Clarify previous change.
|
||||
|
||||
2007-11-24 Richard Stallman <rms@gnu.org>
|
||||
|
||||
* display.texi (Refresh Screen, Forcing Redisplay):
|
||||
Clarify the text and move items around.
|
||||
|
||||
2007-11-24 Glenn Morris <rgm@gnu.org>
|
||||
|
||||
* functions.texi (Declaring Functions): New section.
|
||||
* compile.texi (Compiler Errors): Mention declaring functions,
|
||||
defvar with no initvalue, and byte-compile-warnings.
|
||||
|
||||
2007-11-15 Martin Rudalics <rudalics@gmx.at>
|
||||
|
||||
* vol1.texi (Top): Remove Frame-Local Variables from Node Listing.
|
||||
* vol2.texi (Top): Remove Frame-Local Variables from Node Listing.
|
||||
|
||||
2007-11-13 Martin Rudalics <rudalics@gmx.at>
|
||||
|
||||
* help.texi (Help Functions): Document new macro `with-help-window'.
|
||||
|
||||
2007-11-10 Paul Pogonyshev <pogonyshev@gmx.net>
|
||||
|
||||
* searching.texi (Replacing Match): Describe new
|
||||
|
@ -1743,7 +1811,7 @@
|
|||
Explain string and vector representations of key sequences
|
||||
|
||||
* keymaps.texi (Changing Key Bindings):
|
||||
* commands.texi (Interactive Codes, Interactive Codes):
|
||||
* commands.texi (Interactive Codes):
|
||||
* help.texi (Describing Characters): Refer to it.
|
||||
|
||||
2006-05-23 Luc Teirlinck <teirllm@auburn.edu>
|
||||
|
@ -3500,8 +3568,7 @@
|
|||
|
||||
* text.texi (Undo): Document extensible undo entries.
|
||||
|
||||
* searching.texi (String Search, Regexp Search, Regexp Search):
|
||||
Cleanups.
|
||||
* searching.texi (String Search, Regexp Search): Cleanups.
|
||||
|
||||
* nonascii.texi (Character Codes): Minor fix.
|
||||
|
||||
|
|
|
@ -448,7 +448,7 @@ that results from activating advice for a function.
|
|||
A value of @code{always} specifies to compile unconditionally.
|
||||
A value of @code{never} specifies never compile the advice.
|
||||
|
||||
A value of @code{maybe} specifies to compile if the byte-compiler is
|
||||
A value of @code{maybe} specifies to compile if the byte compiler is
|
||||
already loaded. A value of @code{like-original} specifies to compile
|
||||
the advice if the original definition of the advised function is
|
||||
compiled or a built-in function.
|
||||
|
@ -545,11 +545,11 @@ work properly, because of a mismatch.
|
|||
Activation of the advised
|
||||
function takes longer than usual.
|
||||
@item
|
||||
The byte-compiler gets
|
||||
The byte compiler gets
|
||||
loaded while an advised function gets activated.
|
||||
@item
|
||||
@code{byte-compile} is included in the value of @code{features} even
|
||||
though you did not ever explicitly use the byte-compiler.
|
||||
though you did not ever explicitly use the byte compiler.
|
||||
@end itemize
|
||||
|
||||
Compiled preactivated advice works properly even if the function itself
|
||||
|
|
|
@ -505,9 +505,14 @@ The call to @var{func} must be in the @var{then-form} of the
|
|||
@code{if}, and @var{func} must appear quoted in the call to
|
||||
@code{fboundp}. (This feature operates for @code{cond} as well.)
|
||||
|
||||
Likewise, you can suppress a compiler warning for an unbound variable
|
||||
@var{variable} by conditionalizing its use on a @code{boundp} test,
|
||||
like this:
|
||||
You can tell the compiler that a function is defined using
|
||||
@code{declare-function} (@pxref{Declaring Functions}). Likewise, you
|
||||
can tell the compiler that a variable is defined using @code{defvar}
|
||||
with no initial value.
|
||||
|
||||
You can suppress the compiler warning for a specific use of an
|
||||
undefined variable @var{variable} by conditionalizing its use on a
|
||||
@code{boundp} test, like this:
|
||||
|
||||
@example
|
||||
(if (boundp '@var{variable}) ...@var{variable}...)
|
||||
|
@ -518,8 +523,8 @@ The reference to @var{variable} must be in the @var{then-form} of the
|
|||
@code{if}, and @var{variable} must appear quoted in the call to
|
||||
@code{boundp}.
|
||||
|
||||
You can suppress any compiler warnings using the construct
|
||||
@code{with-no-warnings}:
|
||||
You can suppress any and all compiler warnings within a certain
|
||||
expression using the construct @code{with-no-warnings}:
|
||||
|
||||
@c This is implemented with a defun, but conceptually it is
|
||||
@c a special form.
|
||||
|
@ -530,9 +535,13 @@ but the compiler does not issue warnings for anything that occurs
|
|||
inside @var{body}.
|
||||
|
||||
We recommend that you use this construct around the smallest
|
||||
possible piece of code.
|
||||
possible piece of code, to avoid missing possible warnings other than one
|
||||
one you intend to suppress.
|
||||
@end defspec
|
||||
|
||||
More precise control of warnings is possible by setting the variable
|
||||
@code{byte-compile-warnings}.
|
||||
|
||||
@node Byte-Code Objects
|
||||
@section Byte-Code Function Objects
|
||||
@cindex compiled function
|
||||
|
|
|
@ -755,6 +755,11 @@ string, and the third a function.
|
|||
In the customization buffer, each element is displayed and edited
|
||||
separately, according to the type specified for it.
|
||||
|
||||
@item (group @var{element-types}@dots{})
|
||||
This works like @code{list} except for the formatting
|
||||
of text in the Custom buffer. @code{list} labels each
|
||||
element value with its tag; @code{group} does not.
|
||||
|
||||
@item (vector @var{element-types}@dots{})
|
||||
Like @code{list} except that the value must be a vector instead of a
|
||||
list. The elements work the same as in @code{list}.
|
||||
|
|
|
@ -55,21 +55,10 @@ This function clears and redisplays frame @var{frame}.
|
|||
This function clears and redisplays all visible frames.
|
||||
@end deffn
|
||||
|
||||
This function calls for redisplay of certain windows, the next time
|
||||
redisplay is done, but does not clear them first.
|
||||
|
||||
@defun force-window-update &optional object
|
||||
This function forces some or all windows to be updated on next redisplay.
|
||||
If @var{object} is a window, it forces redisplay of that window. If
|
||||
@var{object} is a buffer or buffer name, it forces redisplay of all
|
||||
windows displaying that buffer. If @var{object} is @code{nil} (or
|
||||
omitted), it forces redisplay of all windows.
|
||||
@end defun
|
||||
|
||||
Processing user input takes absolute priority over redisplay. If you
|
||||
call these functions when input is available, they do nothing
|
||||
immediately, but a full redisplay does happen eventually---after all the
|
||||
input has been processed.
|
||||
In Emacs, processing user input takes priority over redisplay. If
|
||||
you call these functions when input is available, they don't redisplay
|
||||
immediately, but the requested redisplay does happen
|
||||
eventually---after all the input has been processed.
|
||||
|
||||
Normally, suspending and resuming Emacs also refreshes the screen.
|
||||
Some terminal emulators record separate contents for display-oriented
|
||||
|
@ -89,11 +78,56 @@ to redraw, @code{nil} means redrawing is needed. The default is @code{nil}.
|
|||
@section Forcing Redisplay
|
||||
@cindex forcing redisplay
|
||||
|
||||
Emacs normally tries to redisplay the screen whenever it waits for
|
||||
input. With this function you can request an immediate attempt to
|
||||
redisplay, in the middle of Lisp code, without actually waiting for
|
||||
input.
|
||||
|
||||
@defun redisplay &optional force
|
||||
This function tries immediately to redisplay, provided there are no
|
||||
pending input events. It is equivalent to @code{(sit-for 0)}.
|
||||
|
||||
If the optional argument @var{force} is non-@code{nil}, it does all
|
||||
pending redisplay work even if input is available, with no
|
||||
pre-emption.
|
||||
|
||||
The function returns @code{t} if it actually tried to redisplay, and
|
||||
@code{nil} otherwise. A value of @code{t} does not mean that
|
||||
redisplay proceeded to completion; it could have been pre-empted by
|
||||
newly arriving terminal input.
|
||||
@end defun
|
||||
|
||||
@code{redisplay} with no argument tries immediately to redisplay,
|
||||
but has no effect on the usual rules for what parts of the screen to
|
||||
redisplay. By contrast, the following function adds certain windows
|
||||
to the pending redisplay work (as if their contents had completely
|
||||
changed), but doesn't immediately try to do any redisplay work.
|
||||
|
||||
@defun force-window-update &optional object
|
||||
This function forces some or all windows to be updated on next
|
||||
redisplay. If @var{object} is a window, it requires eventual
|
||||
redisplay of that window. If @var{object} is a buffer or buffer name,
|
||||
it requires eventual redisplay of all windows displaying that buffer.
|
||||
If @var{object} is @code{nil} (or omitted), it requires eventual
|
||||
redisplay of all windows.
|
||||
@end defun
|
||||
|
||||
@code{force-window-update} does not do a redisplay immediately.
|
||||
(Emacs will do that when it waits for input.) Rather, its effect is
|
||||
to put more work on the queue to be done by redisplay whenever there
|
||||
is a chance.
|
||||
|
||||
Emacs redisplay normally stops if input arrives, and does not happen
|
||||
at all if input is available before it starts. Most of the time, this
|
||||
is exactly what you want. However, you can prevent preemption by
|
||||
binding @code{redisplay-dont-pause} to a non-@code{nil} value.
|
||||
|
||||
@defvar redisplay-dont-pause
|
||||
If this variable is non-@code{nil}, pending input does not
|
||||
prevent or halt redisplay; redisplay occurs, and finishes,
|
||||
regardless of whether input is available.
|
||||
@end defvar
|
||||
|
||||
@defvar redisplay-preemption-period
|
||||
This variable specifies how many seconds Emacs waits between checks
|
||||
for new input during redisplay. (The default is 0.1 seconds.) If
|
||||
|
@ -107,22 +141,6 @@ This variable is only obeyed on graphical terminals. For
|
|||
text terminals, see @ref{Terminal Output}.
|
||||
@end defvar
|
||||
|
||||
@defvar redisplay-dont-pause
|
||||
If this variable is non-@code{nil}, pending input does not
|
||||
prevent or halt redisplay; redisplay occurs, and finishes,
|
||||
regardless of whether input is available.
|
||||
@end defvar
|
||||
|
||||
@defun redisplay &optional force
|
||||
This function performs an immediate redisplay provided there are no
|
||||
pending input events. This is equivalent to @code{(sit-for 0)}.
|
||||
|
||||
If the optional argument @var{force} is non-@code{nil}, it forces an
|
||||
immediate and complete redisplay even if input is available.
|
||||
|
||||
Returns @code{t} if redisplay was performed, or @code{nil} otherwise.
|
||||
@end defun
|
||||
|
||||
@node Truncation
|
||||
@section Truncation
|
||||
@cindex line wrapping
|
||||
|
|
|
@ -23,6 +23,7 @@ define them.
|
|||
of a symbol.
|
||||
* Obsolete Functions:: Declaring functions obsolete.
|
||||
* Inline Functions:: Defining functions that the compiler will open code.
|
||||
* Declaring Functions:: Telling the compiler that a function is defined.
|
||||
* Function Safety:: Determining whether a function is safe to call.
|
||||
* Related Topics:: Cross-references to specific Lisp primitives
|
||||
that have a special bearing on how functions work.
|
||||
|
@ -1222,6 +1223,88 @@ do for macros. (@xref{Argument Evaluation}.)
|
|||
Inline functions can be used and open-coded later on in the same file,
|
||||
following the definition, just like macros.
|
||||
|
||||
@node Declaring Functions
|
||||
@section Telling the Compiler that a Function is Defined
|
||||
@cindex function declaration
|
||||
@cindex declaring functions
|
||||
@findex declare-function
|
||||
|
||||
Byte-compiling a file often produces warnings about functions that the
|
||||
compiler doesn't know about (@pxref{Compiler Errors}). Sometimes this
|
||||
indicates a real problem, but usually the functions in question are
|
||||
defined in other files which would be loaded if that code is run. For
|
||||
example, byte-compiling @file{fortran.el} used to warn:
|
||||
|
||||
@smallexample
|
||||
In end of data:
|
||||
fortran.el:2152:1:Warning: the function `gud-find-c-expr' is not known to be defined.
|
||||
@end smallexample
|
||||
|
||||
In fact, @code{gud-find-c-expr} is only used in the function that
|
||||
Fortran mode uses for the local value of
|
||||
@code{gud-find-expr-function}, which is a callback from GUD; if it is
|
||||
called, the GUD functions will be loaded. When you know that such a
|
||||
warning does not indicate a real problem, it is good to suppress the
|
||||
warning. That makes new warnings which might mean real problems more
|
||||
visible. You do that with @code{declare-function}.
|
||||
|
||||
All you need to do is add a @code{declare-function} statement before the
|
||||
first use of the function in question:
|
||||
|
||||
@smallexample
|
||||
(declare-function gud-find-c-expr "gud.el" nil)
|
||||
@end smallexample
|
||||
|
||||
This says that @code{gud-find-c-expr} is defined in @file{gud.el} (the
|
||||
@samp{.el} can be omitted). The compiler takes for granted that that file
|
||||
really defines the function, and does not check.
|
||||
|
||||
The optional third argument specifies the argument list of
|
||||
@code{gud-find-c-expr}. In this case, it takes no arguments
|
||||
(@code{nil} is different from not specifying a value). In other
|
||||
cases, this might be something like @code{(file &optional overwrite)}.
|
||||
You don't have to specify the argument list, but if you do the
|
||||
byte compiler can check that the calls match the declaration.
|
||||
|
||||
@defmac declare-function function file &optional arglist fileonly
|
||||
Tell the byte compiler to assume that @var{function} is defined, with
|
||||
arguments @var{arglist}, and that the definition should come from
|
||||
the file @var{file}. @var{fileonly} non-nil means only check that
|
||||
@var{file} exists, not that it actually defines @var{function}.
|
||||
@end defmac
|
||||
|
||||
To verify that these functions really are declared where
|
||||
@code{declare-function} says they are, use @code{check-declare-file}
|
||||
to check all @code{declare-function} calls in one source file, or use
|
||||
@code{check-declare-directory} check all the files in and under a
|
||||
certain directory.
|
||||
|
||||
These commands find the file that ought to contain a function's
|
||||
definition using @code{locate-library}; if that finds no file, they
|
||||
expand the definition file name relative to the directory of the file
|
||||
that contains the @code{declare-function} call.
|
||||
|
||||
You can also say that a function is defined by C code by specifying
|
||||
a file name ending in @samp{.c}. @code{check-declare-file} looks for
|
||||
these files in the C source code directory. This is useful only when
|
||||
you call a function that is defined only on certain systems. Most
|
||||
of the primitive functions of Emacs are always defined so they will
|
||||
never give you a warning.
|
||||
|
||||
Sometimes a file will optionally use functions from an external package.
|
||||
If you prefix the filename in the @code{declare-function} statement with
|
||||
@samp{ext:}, then it will be checked if it is found, otherwise skipped
|
||||
without error.
|
||||
|
||||
There are some function definitions that @samp{check-declare} does not
|
||||
understand (e.g. @code{defstruct} and some other macros). In such cases,
|
||||
you can pass a non-@code{nil} @var{fileonly} argument to
|
||||
@code{declare-function}, meaning to only check that the file exists, not
|
||||
that it actually defines the function. Note that to do this without
|
||||
having to specify an argument list, you should set the @var{arglist}
|
||||
argument to @code{t} (because @code{nil} means an empty argument list, as
|
||||
opposed to an unspecified one).
|
||||
|
||||
@node Function Safety
|
||||
@section Determining whether a Function is Safe to Call
|
||||
@cindex function safety
|
||||
|
|
|
@ -687,6 +687,18 @@ This macro is used in the command @code{help-for-help} which is the
|
|||
binding of @kbd{C-h C-h}.
|
||||
@end defmac
|
||||
|
||||
@defmac with-help-window buffer-name body@dots{}
|
||||
This macro evaluates the @var{body} forms, inserting any output they
|
||||
produce into a buffer named @var{buffer-name} like
|
||||
@code{with-output-to-temp-buffer} (@pxref{Temporary Displays}). It
|
||||
also puts that buffer in Help mode, displays a message telling the
|
||||
user how to quit and scroll the help window, and does various other
|
||||
things that make a help window work better.
|
||||
|
||||
Don't use @code{print-help-return-message} in the body of this macro;
|
||||
it would cause bad results.
|
||||
@end defmac
|
||||
|
||||
@defopt three-step-help
|
||||
If this variable is non-@code{nil}, commands defined with
|
||||
@code{make-help-screen} display their @var{help-line} strings in the
|
||||
|
|
|
@ -31,6 +31,10 @@ these functions are called in a special way (they are passed arguments,
|
|||
or their values are used). The variables whose names end in
|
||||
@samp{-function} have single functions as their values.
|
||||
|
||||
A special feature allows you to specify expressions to evaluate if and
|
||||
when a file is loaded (@pxref{Hooks for Loading}). That feature is
|
||||
not exactly a hook, but does a similar job.
|
||||
|
||||
@c We need to xref to where each hook is documented or else document
|
||||
@c it here.
|
||||
|
||||
|
|
|
@ -692,7 +692,7 @@ done.
|
|||
When @code{require} is used at top level in a file, it takes effect
|
||||
when you byte-compile that file (@pxref{Byte Compilation}) as well as
|
||||
when you load it. This is in case the required package contains macros
|
||||
that the byte compiler must know about. It also avoids byte-compiler
|
||||
that the byte compiler must know about. It also avoids byte compiler
|
||||
warnings for functions and variables defined in the file loaded with
|
||||
@code{require}.
|
||||
|
||||
|
|
|
@ -623,7 +623,7 @@ it. Here is an example:
|
|||
|
||||
Another problem with calling @code{eval} in a macro definition is that
|
||||
it probably won't do what you intend in a compiled program. The
|
||||
byte-compiler runs macro definitions while compiling the program, when
|
||||
byte compiler runs macro definitions while compiling the program, when
|
||||
the program's own computations (which you might have wished to access
|
||||
with @code{eval}) don't occur and its local variable bindings don't
|
||||
exist.
|
||||
|
|
|
@ -525,7 +525,7 @@ bit values are 2**22 for alt, 2**23 for super and 2**24 for hyper.
|
|||
|
||||
A @dfn{symbol} in GNU Emacs Lisp is an object with a name. The
|
||||
symbol name serves as the printed representation of the symbol. In
|
||||
ordinary Lisp use, with one single obarray (@pxref{Creating Symbols},
|
||||
ordinary Lisp use, with one single obarray (@pxref{Creating Symbols}),
|
||||
a symbol's name is unique---no two symbols have the same name.
|
||||
|
||||
A symbol can serve as a variable, as a function name, or to hold a
|
||||
|
|
|
@ -1701,7 +1701,7 @@ the old name is obsolete and therefore that it may be removed at some
|
|||
stage in the future.
|
||||
|
||||
@defun make-obsolete-variable obsolete-name current-name &optional when
|
||||
This function makes the byte-compiler warn that the variable
|
||||
This function makes the byte compiler warn that the variable
|
||||
@var{obsolete-name} is obsolete. If @var{current-name} is a symbol, it is
|
||||
the variable's new name; then the warning message says to use
|
||||
@var{current-name} instead of @var{obsolete-name}. If @var{current-name}
|
||||
|
|
|
@ -441,7 +441,6 @@ Variables
|
|||
* Setting Variables:: Storing new values in variables.
|
||||
* Variable Scoping:: How Lisp chooses among local and global values.
|
||||
* Buffer-Local Variables:: Variable values in effect only in one buffer.
|
||||
* Frame-Local Variables:: Variable values in effect only in one frame.
|
||||
* Future Local Variables:: New kinds of local values we might add some day.
|
||||
* File Local Variables:: Handling local variable lists in files.
|
||||
* Variable Aliases:: Variables that are aliases for other variables.
|
||||
|
|
|
@ -440,7 +440,6 @@ Variables
|
|||
* Setting Variables:: Storing new values in variables.
|
||||
* Variable Scoping:: How Lisp chooses among local and global values.
|
||||
* Buffer-Local Variables:: Variable values in effect only in one buffer.
|
||||
* Frame-Local Variables:: Variable values in effect only in one frame.
|
||||
* Future Local Variables:: New kinds of local values we might add some day.
|
||||
* File Local Variables:: Handling local variable lists in files.
|
||||
* Variable Aliases:: Variables that are aliases for other variables.
|
||||
|
|
|
@ -1,3 +1,12 @@
|
|||
2007-11-22 Francesco Potort,Al(B <pot@gnu.org>
|
||||
|
||||
* etags.1: Ctags and Etags now share the same defaults, so remove
|
||||
--defines, --globals, --members, --typedefs, --typedefs-and-c++.
|
||||
|
||||
2007-11-15 Francesco Potort,Al(B <pot@gnu.org>
|
||||
|
||||
* etags.1: Note that you can use "-" for stdout with -o.
|
||||
|
||||
2007-09-06 Glenn Morris <rgm@gnu.org>
|
||||
|
||||
* ctags.1, emacs.1, emacsclient.1, etags.1: Move from etc/ to
|
||||
|
|
|
@ -32,11 +32,10 @@ etags, ctags \- generate tag file for Emacs, vi
|
|||
[\|\-\-parse\-stdin=\fIfile\fP\|]
|
||||
.br
|
||||
[\|\-\-append\|] [\|\-\-backward\-search\|]
|
||||
[\|\-\-cxref\|] [\|\-\-defines\|] [\|\-\-forward\-search\|]
|
||||
[\|\-\-globals\|] [\|\-\-ignore\-indentation\|]
|
||||
[\|\-\-language=\fIlanguage\fP\|] [\|\-\-members\|]
|
||||
[\|\-\-cxref\|] [\|\-\-no\-defines\|] [\|\-\-forward\-search\|]
|
||||
[\|\-\-no\-globals\|] [\|\-\-ignore\-indentation\|]
|
||||
[\|\-\-language=\fIlanguage\fP\|] [\|\-\-no\-members\|]
|
||||
[\|\-\-output=\fItagfile\fP\|] [\|\-\-regex=\fIregexp\fP\|]
|
||||
[\|\-\-typedefs\|] [\|\-\-typedefs\-and\-c++\|]
|
||||
[\|\-\-update\|]
|
||||
[\|\-\-help\|] [\|\-\-version\|]
|
||||
\fIfile\fP .\|.\|.
|
||||
|
@ -59,9 +58,9 @@ table (defaults: \fBTAGS\fP for \fBetags\fP, \fBtags\fP for
|
|||
\fBctags\fP) in the current working directory.
|
||||
Files specified with relative file names will be recorded in the tag
|
||||
table with file names relative to the directory where the tag table
|
||||
resides. If the tag table is in /dev, however, the file names are made
|
||||
relative to the working directory. Files specified with absolute file
|
||||
names will be recorded
|
||||
resides. If the tag table is in /dev or is the standard output,
|
||||
however, the file names are made relative to the working directory.
|
||||
Files specified with absolute file names will be recorded
|
||||
with absolute file names. Files generated from a source file\-\-like
|
||||
a C file generated from a source Cweb file\-\-will be recorded with
|
||||
the name of the source file.
|
||||
|
@ -91,28 +90,14 @@ Only \fBctags\fP accepts this option.
|
|||
In C and derived languages, create tags for function declarations,
|
||||
and create tags for extern variables unless \-\-no\-globals is used.
|
||||
.TP
|
||||
.B \-d, \-\-defines
|
||||
Create tag entries for C preprocessor constant definitions
|
||||
and enum constants, too. Since this is the default behavior of
|
||||
\fBetags\fP, only \fBctags\fP accepts this option.
|
||||
.TP
|
||||
.B \-D, \-\-no\-defines
|
||||
Do not create tag entries for C preprocessor constant definitions
|
||||
and enum constants.
|
||||
This may make the tags file much smaller if many header files are tagged.
|
||||
Since this is the default behavior of \fBctags\fP, only \fBetags\fP
|
||||
accepts this option.
|
||||
.TP
|
||||
.B \-\-globals
|
||||
Create tag entries for global variables in C, C++, Objective C, Java,
|
||||
and Perl.
|
||||
Since this is the default behavior of \fBetags\fP, only \fBctags\fP
|
||||
accepts this option.
|
||||
.TP
|
||||
.B \-\-no\-globals
|
||||
Do not tag global variables. Typically this reduces the file size by
|
||||
one fourth. Since this is the default behavior of \fBctags\fP, only
|
||||
\fBetags\fP accepts this option.
|
||||
one fourth.
|
||||
.TP
|
||||
\fB\-i\fP \fIfile\fP, \fB\-\-include=\fIfile\fP
|
||||
Include a note in the tag file indicating that, when searching for a
|
||||
|
@ -135,10 +120,10 @@ regexp matching is done in this case (see the \fB\-\-regex\fP option).
|
|||
.TP
|
||||
.B \-\-members
|
||||
Create tag entries for variables that are members of structure-like
|
||||
constructs in C++, Objective C, Java. This is the default for etags.
|
||||
constructs in C++, Objective C, Java. This is the default.
|
||||
.TP
|
||||
.B \-\-no\-members
|
||||
Do not tag member variables. This is the default for ctags.
|
||||
Do not tag member variables.
|
||||
.TP
|
||||
.B \-\-packages\-only
|
||||
Only tag packages in Ada files.
|
||||
|
@ -149,8 +134,9 @@ May be used (only once) in place of a file name on the command line.
|
|||
as belonging to the file \fBFILE\fP.
|
||||
.TP
|
||||
\fB\-o\fP \fItagfile\fP, \fB\-\-output=\fItagfile\fP
|
||||
Explicit name of file for tag table; overrides default \fBTAGS\fP or
|
||||
\fBtags\fP. (But ignored with \fB\-v\fP or \fB\-x\fP.)
|
||||
Explicit name of file for tag table; for \fBetags\fP only, a file name
|
||||
of \- means standard output; overrides default \fBTAGS\fP or \fBtags\fP.
|
||||
(But ignored with \fB\-v\fP or \fB\-x\fP.)
|
||||
.TP
|
||||
\fB\-r\fP \fIregexp\fP, \fB\-\-regex=\fIregexp\fP
|
||||
|
||||
|
@ -241,15 +227,6 @@ reads the regexes contained in the file regex.file.
|
|||
Don't do any more regexp matching on the following files. May be
|
||||
freely intermixed with filenames and the \fB\-\-regex\fP option.
|
||||
.TP
|
||||
.B \-t, \-\-typedefs
|
||||
Record typedefs in C code as tags. Since this is the default behavior
|
||||
of \fBetags\fP, only \fBctags\fP accepts this option.
|
||||
.TP
|
||||
.B \-T, \-\-typedefs\-and\-c++
|
||||
Generate tag entries for typedefs, struct, enum, and union tags, and
|
||||
C++ member functions. Since this is the default behavior
|
||||
of \fBetags\fP, only \fBctags\fP accepts this option.
|
||||
.TP
|
||||
.B \-u, \-\-update
|
||||
Update tag entries for \fIfiles\fP specified on command line, leaving
|
||||
tag entries for other files in place. Currently, this is implemented
|
||||
|
|
|
@ -1,9 +1,125 @@
|
|||
2007-12-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
|
||||
|
||||
* gnus.texi (Other Files): Add the yenc command.
|
||||
|
||||
2007-11-30 Reiner Steib <Reiner.Steib@gmx.de>
|
||||
|
||||
* gnus.texi (MIME Commands): Default of gnus-article-loose-mime is t
|
||||
since 2004-08-06.
|
||||
|
||||
2007-11-28 Katsumi Yamaoka <yamaoka@jpl.org>
|
||||
|
||||
* gnus.texi (Fancy Mail Splitting): Fix description of splitting based
|
||||
on body.
|
||||
|
||||
2007-11-27 Katsumi Yamaoka <yamaoka@jpl.org>
|
||||
|
||||
* emacs-mime.texi (rfc2047): Mention rfc2047-encoded-word-regexp-loose
|
||||
and rfc2047-allow-irregular-q-encoded-words; fix description of
|
||||
rfc2047-encode-encoded-words.
|
||||
|
||||
2007-11-24 Reiner Steib <Reiner.Steib@gmx.de>
|
||||
|
||||
* gnus.texi (Fetching Mail): Remove obsoleted `nnmail-spool-file'.
|
||||
|
||||
2007-12-05 Michael Olson <mwolson@gnu.org>
|
||||
|
||||
* remember.texi (Diary): Remove "require" line for remember-diary.el.
|
||||
Update documentation for `remember-diary-file'.
|
||||
|
||||
2007-12-04 Michael Albinus <michael.albinus@gmx.de>
|
||||
|
||||
* dbus.texi (Signals): Precise `dbus-register-signal'.
|
||||
(Errors and Events): Rework events part, the internal structure of
|
||||
dbus-event has changed.
|
||||
|
||||
2007-12-03 Juanma Barranquero <lekktu@gmail.com>
|
||||
|
||||
* makefile.w32-in (INFO_TARGETS, DVI_TARGETS, clean): Add dbus.
|
||||
($(infodir)/dbus, dbus.dvi): New targets.
|
||||
|
||||
2007-12-03 Michael Albinus <michael.albinus@gmx.de>
|
||||
|
||||
* Makefile.in (INFO_TARGETS, DVI_TARGETS): Apply dbus and dbus.dvi
|
||||
unconditionally.
|
||||
|
||||
* dbus.texi (Synchronous Methods): Show the result of the "lshal"
|
||||
emulation with @print{}.
|
||||
|
||||
2007-12-02 Richard Stallman <rms@gnu.org>
|
||||
|
||||
* dbus.texi (Overview): Minor cleanup.
|
||||
|
||||
2007-12-02 Michael Albinus <michael.albinus@gmx.de>
|
||||
|
||||
* Makefile.in (INFO_TARGETS): Add dbus.
|
||||
(DVI_TARGETS): Add dbus.dvi.
|
||||
(dbus, dbus.dvi): New targets.
|
||||
|
||||
* dbus.texi: New file.
|
||||
|
||||
2007-11-24 Romain Francoise <romain@orebokech.com>
|
||||
|
||||
* nxml-mode.texi: Add description in @direntry.
|
||||
Fix file name to match @setfilename.
|
||||
|
||||
2007-11-23 Mark A. Hershberger <mah@everybody.org>
|
||||
|
||||
* Makefile.in (INFO_TARGETS, DVI_TARGETS): Add nxml-mode.
|
||||
($(infodir)/nxml-mode): New rule.
|
||||
|
||||
* makefile.w32-in (INFO_TARGETS, DVI_TARGETS): Add nxml-mode.
|
||||
($(infodir)/nxml-mode): New rule.
|
||||
(clean): Add nxml-mode*.
|
||||
|
||||
* nxml-mode.texi: New file with nxml manual.
|
||||
|
||||
2007-11-18 Richard Stallman <rms@gnu.org>
|
||||
|
||||
* flymake.texi (Example -- Configuring a tool called directly):
|
||||
Update example.
|
||||
|
||||
2007-11-18 Michael Albinus <michael.albinus@gmx.de>
|
||||
|
||||
* tramp.texi (Filename completion): Simplify explanation of
|
||||
double-slash behaviour. Explain directory contents flushing.
|
||||
|
||||
2007-11-16 Jay Belanger <jay.p.belanger@gmail.com>
|
||||
|
||||
* calc.texi (TeX and LaTeX Language Modes): Put in
|
||||
missing braces.
|
||||
|
||||
2007-11-15 Richard Stallman <rms@gnu.org>
|
||||
|
||||
* cl.texi (Equality Predicates): Delete `eql'.
|
||||
(Predicates, Naming Conventions, Top): Delete `eql'.
|
||||
(Common Lisp Compatibility): Delete `eql'.
|
||||
(Porting Common Lisp): Delete obsolete backquote info.
|
||||
Minor clarification about character constants.
|
||||
(Sequence Basics): Minor clarification.
|
||||
|
||||
2007-11-15 Juanma Barranquero <lekktu@gmail.com>
|
||||
|
||||
* cc-mode.texi (Electric Keys, Custom Macros):
|
||||
* tramp.texi (Filename completion): Fix typos.
|
||||
|
||||
2007-11-15 Jay Belanger <jay.p.belanger@gmail.com>
|
||||
|
||||
* calc.texi (Basic commands): Mention the menu.
|
||||
|
||||
2007-11-12 Michael Albinus <michael.albinus@gmx.de>
|
||||
|
||||
* tramp.texi (Connection caching): Tramp flushes connection
|
||||
properties when remote operating system has been changed.
|
||||
|
||||
2007-11-09 Reiner Steib <Reiner.Steib@gmx.de>
|
||||
|
||||
* gnus-news.texi: Fix spelling.
|
||||
`message-insert-formatted-citation-line', not
|
||||
`message-insert-formated-citation-line'.
|
||||
|
||||
* gnus.texi, gnus-faq.texi, message.texi: Bump version to 5.10.9.
|
||||
|
||||
2007-11-07 Michael Albinus <michael.albinus@gmx.de>
|
||||
|
||||
* tramp.texi (Overview): Mention also the PuTTY integration under
|
||||
|
@ -41,6 +157,11 @@
|
|||
(Keystrokes): Document C-c C-k.
|
||||
(Introduction): Fix typographical issue with "---".
|
||||
|
||||
2007-10-29 Richard Stallman <rms@gnu.org>
|
||||
|
||||
* widget.texi (Introduction): Delete discussion of implementation
|
||||
internals.
|
||||
|
||||
2007-10-29 Michael Albinus <michael.albinus@gmx.de>
|
||||
|
||||
* tramp.texi (Connection caching): Host names must be different
|
||||
|
@ -504,6 +625,14 @@
|
|||
|
||||
* gnus.texi (Top): Add SASL.
|
||||
|
||||
2007-10-27 Emanuele Giaquinta <e.giaquinta@glauco.it> (tiny change)
|
||||
|
||||
* gnus-faq.texi ([5.12]): Remove reference to discontinued service.
|
||||
|
||||
2007-10-27 Reiner Steib <Reiner.Steib@gmx.de>
|
||||
|
||||
* gnus.texi (Troubleshooting): Adjust Gnus version number.
|
||||
|
||||
2007-10-27 Jay Belanger <jay.p.belanger@gmail.com>
|
||||
|
||||
* calc.texi (Formulas, Composition Basics): Lower the
|
||||
|
@ -1621,7 +1750,7 @@
|
|||
(Custom Filling and Breaking, Custom Braces, Syntactic Symbols)
|
||||
(Line-Up Functions, Custom Macros):
|
||||
* ediff.texi (Window and Frame Configuration)
|
||||
(Highlighting Difference Regions, Highlighting Difference Regions):
|
||||
(Highlighting Difference Regions):
|
||||
* emacs-mime.texi (Display Customization):
|
||||
* erc.texi (History):
|
||||
* eshell.texi (Known problems):
|
||||
|
@ -1629,7 +1758,7 @@
|
|||
* gnus.texi (NNTP, IMAP, Advanced Scoring Examples)
|
||||
(The problem of spam, SpamOracle, Extending the Spam package)
|
||||
(Conformity, Terminology):
|
||||
* idlwave.texi (Routine Info, Routine Info)
|
||||
* idlwave.texi (Routine Info)
|
||||
(Class and Keyword Inheritance, Padding Operators)
|
||||
(Breakpoints and Stepping, Electric Debug Mode)
|
||||
(Examining Variables, Troubleshooting):
|
||||
|
|
|
@ -44,6 +44,7 @@ INFO_TARGETS = \
|
|||
$(infodir)/calc \
|
||||
$(infodir)/ccmode \
|
||||
$(infodir)/cl \
|
||||
$(infodir)/dbus \
|
||||
$(infodir)/dired-x \
|
||||
$(infodir)/ebrowse \
|
||||
$(infodir)/ediff \
|
||||
|
@ -60,6 +61,7 @@ INFO_TARGETS = \
|
|||
$(infodir)/message \
|
||||
$(infodir)/mh-e \
|
||||
$(infodir)/newsticker \
|
||||
$(infodir)/nxml-mode \
|
||||
$(infodir)/org \
|
||||
$(infodir)/pcl-cvs \
|
||||
$(infodir)/pgg \
|
||||
|
@ -84,6 +86,7 @@ DVI_TARGETS = \
|
|||
calc.dvi \
|
||||
cc-mode.dvi \
|
||||
cl.dvi \
|
||||
dbus.dvi \
|
||||
dired-x.dvi \
|
||||
ebrowse.dvi \
|
||||
ediff.dvi \
|
||||
|
@ -100,6 +103,7 @@ DVI_TARGETS = \
|
|||
message.dvi \
|
||||
mh-e.dvi \
|
||||
newsticker.dvi \
|
||||
nxml-mode.dvi \
|
||||
org.dvi \
|
||||
pcl-cvs.dvi \
|
||||
pgg.dvi \
|
||||
|
@ -173,6 +177,12 @@ $(infodir)/cl: cl.texi
|
|||
cl.dvi: cl.texi
|
||||
$(ENVADD) $(TEXI2DVI) ${srcdir}/cl.texi
|
||||
|
||||
dbus : $(infodir)/dbus
|
||||
$(infodir)/dbus: dbus.texi
|
||||
cd $(srcdir); $(MAKEINFO) dbus.texi
|
||||
dbus.dvi: dbus.texi
|
||||
$(ENVADD) $(TEXI2DVI) ${srcdir}/dbus.texi
|
||||
|
||||
dired-x : $(infodir)/dired-x
|
||||
$(infodir)/dired-x: dired-x.texi
|
||||
cd $(srcdir); $(MAKEINFO) dired-x.texi
|
||||
|
@ -278,6 +288,12 @@ $(infodir)/newsticker: newsticker.texi
|
|||
newsticker.dvi: newsticker.texi
|
||||
$(ENVADD) $(TEXI2DVI) ${srcdir}/newsticker.texi
|
||||
|
||||
nxml-mode : $(infodir)/nxml-mode
|
||||
$(infodir)/nxml-mode: nxml-mode.texi
|
||||
cd $(srcdir); $(MAKEINFO) nxml-mode.texi
|
||||
nxml-mode.dvi: nxml-mode.texi
|
||||
$(ENVADD) $(TEXI2DVI) ${srcdir}/nxml-mode.texi
|
||||
|
||||
org : $(infodir)/org
|
||||
$(infodir)/org: org.texi
|
||||
cd $(srcdir); $(MAKEINFO) org.texi
|
||||
|
|
|
@ -9667,6 +9667,11 @@ is like @kbd{M-x} except that it enters the initial string @samp{calc-}
|
|||
for you. For example, the following key sequences are equivalent:
|
||||
@kbd{S}, @kbd{M-x calc-sin @key{RET}}, @kbd{x sin @key{RET}}.
|
||||
|
||||
Although Calc is designed to be used from the keyboard, some of
|
||||
Calc's more common commands are available from a menu. In the menu, the
|
||||
arguments to the functions are given by referring to their stack level
|
||||
numbers.
|
||||
|
||||
@cindex Extensions module
|
||||
@cindex @file{calc-ext} module
|
||||
The Calculator exists in many parts. When you type @kbd{C-x * c}, the
|
||||
|
@ -14001,7 +14006,7 @@ mode may display it differently.
|
|||
Formulas are entered and displayed in the appropriate notation;
|
||||
@texline @math{\sin(a/b)}
|
||||
@infoline @expr{sin(a/b)}
|
||||
will appear as @samp{\sin\left( a \over b \right)} in @TeX{} mode and
|
||||
will appear as @samp{\sin\left( @{a \over b@} \right)} in @TeX{} mode and
|
||||
@samp{\sin\left(\frac@{a@}@{b@}\right)} in La@TeX{} mode.
|
||||
Math formulas are often enclosed by @samp{$ $} signs in @TeX{} and
|
||||
La@TeX{}; these should be omitted when interfacing with Calc. To Calc,
|
||||
|
|
|
@ -1228,7 +1228,7 @@ reindenting the line. This reindentation saves you from having to
|
|||
reindent a line manually after typing, say, a @samp{@}}. A few
|
||||
keywords, such as @code{else}, also trigger electric action.
|
||||
|
||||
You can inhibit the electric behaviour described here by disabling
|
||||
You can inhibit the electric behavior described here by disabling
|
||||
electric minor mode (@pxref{Minor Modes}).
|
||||
|
||||
Common to all these keys is that they only behave electrically when
|
||||
|
@ -1281,7 +1281,7 @@ whitespace before it).
|
|||
Additionally, you can configure @ccmode{} so that typing a slash at
|
||||
the start of a line within a block comment will terminate the
|
||||
comment. You don't need to have electric minor mode enabled to get
|
||||
this behaviour. @xref{Clean-ups}.
|
||||
this behavior. @xref{Clean-ups}.
|
||||
|
||||
In AWK mode, @samp{*} and @samp{/} do not delimit comments and are not
|
||||
electric.
|
||||
|
@ -6458,7 +6458,7 @@ functions to this hook, not remove them. @xref{Style Variables}.
|
|||
@comment !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
||||
|
||||
Normally, the lines in a multi-line macro are indented relative to
|
||||
each other as though they were code. You can suppress this behaviour
|
||||
each other as though they were code. You can suppress this behavior
|
||||
by setting the following user option:
|
||||
|
||||
@defopt c-syntactic-indentation-in-macros
|
||||
|
|
|
@ -62,14 +62,14 @@ does assume a basic familiarity with Emacs Lisp.
|
|||
@menu
|
||||
* Overview:: Installation, usage, etc.
|
||||
* Program Structure:: Arglists, `eval-when', `defalias'
|
||||
* Predicates:: `typep', `eql', and `equalp'
|
||||
* Predicates:: `typep' and `equalp'
|
||||
* Control Structure:: `setf', `do', `loop', etc.
|
||||
* Macros:: Destructuring, `define-compiler-macro'
|
||||
* Declarations:: `proclaim', `declare', etc.
|
||||
* Symbols:: Property lists, `gensym'
|
||||
* Numbers:: Predicates, functions, random numbers
|
||||
* Sequences:: Mapping, functions, searching, sorting
|
||||
* Lists:: `cadr', `sublis', `member*', `assoc*', etc.
|
||||
* Lists:: `caddr', `sublis', `member*', `assoc*', etc.
|
||||
* Structures:: `defstruct'
|
||||
* Assertions:: `check-type', `assert', `ignore-errors'.
|
||||
|
||||
|
@ -287,7 +287,7 @@ The following simple functions and macros are defined in @file{cl.el};
|
|||
they do not cause other components like @file{cl-extra} to be loaded.
|
||||
|
||||
@example
|
||||
eql floatp-safe endp
|
||||
floatp-safe endp
|
||||
evenp oddp plusp minusp
|
||||
caaar .. cddddr
|
||||
list* ldiff rest first .. tenth
|
||||
|
@ -700,7 +700,7 @@ facts are true or false.
|
|||
|
||||
@menu
|
||||
* Type Predicates:: `typep', `deftype', and `coerce'
|
||||
* Equality Predicates:: `eql' and `equalp'
|
||||
* Equality Predicates:: `equalp'
|
||||
@end menu
|
||||
|
||||
@node Type Predicates, Equality Predicates, Predicates, Predicates
|
||||
|
@ -840,40 +840,7 @@ arguments to specify the type of sequence to return. @xref{Sequences}.
|
|||
@section Equality Predicates
|
||||
|
||||
@noindent
|
||||
This package defines two Common Lisp predicates, @code{eql} and
|
||||
@code{equalp}.
|
||||
|
||||
@defun eql a b
|
||||
This function is almost the same as @code{eq}, except that if @var{a}
|
||||
and @var{b} are numbers of the same type, it compares them for numeric
|
||||
equality (as if by @code{equal} instead of @code{eq}). This makes a
|
||||
difference only for versions of Emacs that are compiled with
|
||||
floating-point support. Emacs floats are allocated
|
||||
objects just like cons cells, which means that @code{(eq 3.0 3.0)}
|
||||
will not necessarily be true---if the two @code{3.0}s were allocated
|
||||
separately, the pointers will be different even though the numbers are
|
||||
the same. But @code{(eql 3.0 3.0)} will always be true.
|
||||
|
||||
The types of the arguments must match, so @code{(eql 3 3.0)} is
|
||||
still false.
|
||||
|
||||
Note that Emacs integers are ``direct'' rather than allocated, which
|
||||
basically means @code{(eq 3 3)} will always be true. Thus @code{eq}
|
||||
and @code{eql} behave differently only if floating-point numbers are
|
||||
involved, and are indistinguishable on Emacs versions that don't
|
||||
support floats.
|
||||
|
||||
There is a slight inconsistency with Common Lisp in the treatment of
|
||||
positive and negative zeros. Some machines, notably those with IEEE
|
||||
standard arithmetic, represent @code{+0} and @code{-0} as distinct
|
||||
values. Normally this doesn't matter because the standard specifies
|
||||
that @code{(= 0.0 -0.0)} should always be true, and this is indeed
|
||||
what Emacs Lisp and Common Lisp do. But the Common Lisp standard
|
||||
states that @code{(eql 0.0 -0.0)} and @code{(equal 0.0 -0.0)} should
|
||||
be false on IEEE-like machines; Emacs Lisp does not do this, and in
|
||||
fact the only known way to distinguish between the two zeros in Emacs
|
||||
Lisp is to @code{format} them and check for a minus sign.
|
||||
@end defun
|
||||
This package defines the Common Lisp predicate @code{equalp}.
|
||||
|
||||
@defun equalp a b
|
||||
This function is a more flexible version of @code{equal}. In
|
||||
|
@ -3685,7 +3652,7 @@ the same sequence, in the same order as they appear in that sequence.)
|
|||
The @code{:test} argument specifies a function which must return
|
||||
true (non-@code{nil}) to indicate a match; instead, you may use
|
||||
@code{:test-not} to give a function which returns @emph{false} to
|
||||
indicate a match. The default test function is @code{:test 'eql}.
|
||||
indicate a match. The default test function is @code{eql}.
|
||||
|
||||
Many functions which take @var{item} and @code{:test} or @code{:test-not}
|
||||
arguments also come in @code{-if} and @code{-if-not} varieties,
|
||||
|
@ -4998,7 +4965,7 @@ which understand full-featured argument lists. The @code{&whole}
|
|||
keyword does not work in @code{defmacro} argument lists (except
|
||||
inside recursive argument lists).
|
||||
|
||||
The @code{eql} and @code{equal} predicates do not distinguish
|
||||
The @code{equal} predicate does not distinguish
|
||||
between IEEE floating-point plus and minus zero. The @code{equalp}
|
||||
predicate has several differences with Common Lisp; @pxref{Predicates}.
|
||||
|
||||
|
@ -5218,12 +5185,6 @@ whereas Emacs Lisp's parser just treats quote as a special case.
|
|||
Some Lisp packages use reader macros to create special syntaxes
|
||||
for themselves, which the Emacs parser is incapable of reading.
|
||||
|
||||
The lack of reader macros, incidentally, is the reason behind
|
||||
Emacs Lisp's unusual backquote syntax. Since backquotes are
|
||||
implemented as a Lisp package and not built-in to the Emacs
|
||||
parser, they are forced to use a regular macro named @code{`}
|
||||
which is used with the standard function/macro call notation.
|
||||
|
||||
@item
|
||||
Other syntactic features. Common Lisp provides a number of
|
||||
notations beginning with @code{#} that the Emacs Lisp parser
|
||||
|
@ -5287,11 +5248,11 @@ matters, Emacs has its own @code{#(} notation for
|
|||
something entirely different---strings with properties.
|
||||
|
||||
@item
|
||||
Characters are distinct from integers in Common Lisp. The
|
||||
notation for character constants is also different: @code{#\A}
|
||||
instead of @code{?A}. Also, @code{string=} and @code{string-equal}
|
||||
are synonyms in Emacs Lisp whereas the latter is case-insensitive
|
||||
in Common Lisp.
|
||||
Characters are distinct from integers in Common Lisp. The notation
|
||||
for character constants is also different: @code{#\A} in Common Lisp
|
||||
where Emacs Lisp uses @code{?A}. Also, @code{string=} and
|
||||
@code{string-equal} are synonyms in Emacs Lisp, whereas the latter is
|
||||
case-insensitive in Common Lisp.
|
||||
|
||||
@item
|
||||
Data types. Some Common Lisp data types do not exist in Emacs
|
||||
|
|
564
doc/misc/dbus.texi
Normal file
564
doc/misc/dbus.texi
Normal file
|
@ -0,0 +1,564 @@
|
|||
\input texinfo @c -*-texinfo-*-
|
||||
@setfilename ../../info/dbus
|
||||
@c %**start of header
|
||||
@settitle Using of D-Bus
|
||||
@c @setchapternewpage odd
|
||||
@c %**end of header
|
||||
|
||||
@copying
|
||||
Copyright @copyright{} 2007 Free Software Foundation, Inc.
|
||||
|
||||
@quotation
|
||||
Permission is granted to copy, distribute and/or modify this document
|
||||
under the terms of the GNU Free Documentation License, Version 1.2 or
|
||||
any later version published by the Free Software Foundation; with no
|
||||
Invariant Sections, with the Front-Cover texts being ``A GNU
|
||||
Manual'', and with the Back-Cover Texts as in (a) below. A copy of the
|
||||
license is included in the section entitled ``GNU Free Documentation
|
||||
License'' in the Emacs manual.
|
||||
|
||||
(a) The FSF's Back-Cover Text is: ``You have freedom to copy and modify
|
||||
this GNU Manual, like GNU software. Copies published by the Free
|
||||
Software Foundation raise funds for GNU development.''
|
||||
|
||||
This document is part of a collection distributed under the GNU Free
|
||||
Documentation License. If you want to distribute this document
|
||||
separately from the collection, you can do so by adding a copy of the
|
||||
license to the document, as described in section 6 of the license.
|
||||
@end quotation
|
||||
@end copying
|
||||
|
||||
@dircategory Emacs
|
||||
@direntry
|
||||
* D-Bus: (dbus). Using D-Bus in Emacs.
|
||||
@end direntry
|
||||
|
||||
@node Top, Overview, (dir), (dir)
|
||||
@top D-Bus integration in Emacs
|
||||
|
||||
This manual documents an API for usage of D-Bus in
|
||||
Emacs.@footnote{D-Bus is not enabled by default. You must run
|
||||
@command{./configure --with-dbus} in Emacs' top level directory,
|
||||
before you compile Emacs.} D-Bus is a message bus system, a simple
|
||||
way for applications to talk to one another. An overview of D-Bus can
|
||||
be found at @uref{http://dbus.freedesktop.org/}.
|
||||
|
||||
@insertcopying
|
||||
|
||||
@menu
|
||||
* Overview:: An overview of D-Bus.
|
||||
* Inspection:: Inspection of the bus names.
|
||||
* Type Conversion:: Mapping Lisp types and D-Bus types.
|
||||
* Synchronous Methods:: Calling methods in a blocking way.
|
||||
* Signals:: Sending and receiving signals.
|
||||
* Errors and Events:: Errors and events.
|
||||
* GNU Free Documentation License:: The license for this documentation.
|
||||
@end menu
|
||||
|
||||
@node Overview
|
||||
@chapter An overview of D-Bus
|
||||
@cindex overview
|
||||
|
||||
D-Bus is an inter-process communication mechanism for applications
|
||||
residing on the same host. The communication is based on
|
||||
@dfn{messages}. Data in the messages is carried in a structured way,
|
||||
it is not just a byte stream.
|
||||
|
||||
The communication is connection oriented to two kinds of message
|
||||
buses: a so called @dfn{system bus}, and a @dfn{session bus}. On a
|
||||
given machine, there is always one single system bus for miscellaneous
|
||||
system-wide communication, like changing of hardware configuration.
|
||||
On the other hand, the session bus is always related to a single
|
||||
user's session.
|
||||
|
||||
Every client application, which is connected to a bus, registers under
|
||||
a @dfn{unique name} at the bus. This name is used for identifying the
|
||||
client application. Such a unique name starts always with a colon,
|
||||
and looks like @samp{:1.42}.
|
||||
|
||||
Additionally, a client application can register itself to a so called
|
||||
@dfn{known name}, which is a series of identifiers separated by dots,
|
||||
as in @samp{org.gnu.Emacs}. If several applications register to the
|
||||
same known name, these registrations are queued, and only the first
|
||||
application which has registered for the known name is reachable via
|
||||
this name. If this application disconnects from the bus, the next
|
||||
queued unique name becomes the owner of this known name.
|
||||
|
||||
An application can install one or several objects under its name.
|
||||
Such objects are identified by an @dfn{object path}, which looks
|
||||
similar to paths in a filesystem. An example of such an object path
|
||||
could be @samp{/org/gnu/Emacs/}.
|
||||
|
||||
Applications might send a request to an object, that means sending a
|
||||
message with some data as input parameters, and receiving a message
|
||||
from that object with the result of this message, the output
|
||||
parameters. Such a request is called @dfn{method} in D-Bus.
|
||||
|
||||
The other form of communication are @dfn{signals}. The underlying
|
||||
message is emitted from an object and will be received by all other
|
||||
applications which have registered for such a signal.
|
||||
|
||||
All methods and signals an object supports are called @dfn{interface}
|
||||
of the object. Interfaces are specified under a hierarchical name in
|
||||
D-Bus; an object can support several interfaces. Such an interface
|
||||
name could be @samp{org.gnu.Emacs.TextEditor} or
|
||||
@samp{org.gnu.Emacs.FileManager}.
|
||||
|
||||
|
||||
@node Inspection
|
||||
@chapter Inspection of the bus names.
|
||||
@cindex inspection
|
||||
|
||||
There are several basic functions which inspect the buses for
|
||||
registered names. Internally they use the basic interface
|
||||
@samp{org.freedesktop.DBus}, which is supported by all objects of a bus.
|
||||
|
||||
@defun dbus-list-activatable-names
|
||||
This function returns the D-Bus service names, which can be activated.
|
||||
An activatable service is described in a service registration file.
|
||||
Under GNU/Linux, such files are located at
|
||||
@file{/usr/share/dbus-1/services/}.
|
||||
|
||||
The result is a list of strings, which is @code{nil} when there are no
|
||||
activatable service names at all.
|
||||
@end defun
|
||||
|
||||
@defun dbus-list-names bus
|
||||
All service names, which are registered at D-Bus @var{bus}, are
|
||||
returned. The result is a list of strings, which is @code{nil} when
|
||||
there are no registered service names at all. Well known names are
|
||||
strings like @samp{org.freedesktop.DBus}. Names starting with
|
||||
@samp{:} are unique names for services.
|
||||
|
||||
@var{bus} must be either the symbol @code{:system} or the symbol
|
||||
@code{:session}.
|
||||
@end defun
|
||||
|
||||
@defun dbus-list-known-names bus
|
||||
Retrieves all services which correspond to a known name in @var{bus}.
|
||||
A service has a known name if it doesn't start with @samp{:}. The
|
||||
result is a list of strings, which is @code{nil} when there are no
|
||||
known names at all.
|
||||
|
||||
@var{bus} must be either the symbol @code{:system} or the symbol
|
||||
@code{:session}.
|
||||
@end defun
|
||||
|
||||
@defun dbus-list-queued-owners bus service
|
||||
For a given service, registered at D-Bus @var{bus} under the name
|
||||
@var{service}, all queued unique names are returned. The result is a
|
||||
list of strings, or @code{nil} when there are no queued names for
|
||||
@var{service} at all.
|
||||
|
||||
@var{bus} must be either the symbol @code{:system} or the symbol
|
||||
@code{:session}. @var{service} must be a known service name as
|
||||
string.
|
||||
@end defun
|
||||
|
||||
@defun dbus-get-name-owner bus service
|
||||
For a given service, registered at D-Bus @var{bus} under the name
|
||||
@var{service}, the unique name of the name owner is returned. The result is a
|
||||
string, or @code{nil} when there exist no name owner of @var{service}.
|
||||
|
||||
@var{bus} must be either the symbol @code{:system} or the symbol
|
||||
@code{:session}. @var{service} must be a known service name as
|
||||
string.
|
||||
@end defun
|
||||
|
||||
@defun dbus-get-unique-name bus
|
||||
The unique name, under which Emacs is registered at D-Bus @var{bus},
|
||||
is returned as string.
|
||||
|
||||
@var{bus} must be either the symbol @code{:system} or the symbol
|
||||
@code{:session}.
|
||||
@end defun
|
||||
|
||||
@defun dbus-introspect bus service path
|
||||
Objects can publish there interfaces to the D-Bus. This function
|
||||
returns all interfaces of @var{service}, registered at object path
|
||||
@var{path} at bus @var{bus}.
|
||||
|
||||
@var{bus} must be either the symbol @code{:system} or the symbol
|
||||
@code{:session}. @var{service} must be a known service name, and
|
||||
@var{path} must be a valid object path. The last two parameters are
|
||||
strings. The result, the introspection data, is a string in XML
|
||||
format. Example:
|
||||
|
||||
@example
|
||||
(dbus-introspect
|
||||
:system "org.freedesktop.Hal"
|
||||
"/org/freedesktop/Hal/devices/computer")
|
||||
|
||||
@result{} "<!DOCTYPE node PUBLIC
|
||||
\"-//freedesktop//DTD D-BUS Object Introspection 1.0//EN\"
|
||||
\"http://www.freedesktop.org/standards/dbus/1.0/introspect.dtd\">
|
||||
<node>
|
||||
<interface name=\"org.freedesktop.Hal.Device\">
|
||||
<method name=\"GetAllProperties\">
|
||||
<arg name=\"properties\" direction=\"out\" type=\"a@{sv@}\"/>
|
||||
</method>
|
||||
...
|
||||
<signal name=\"PropertyModified\">
|
||||
<arg name=\"num_updates\" type=\"i\"/>
|
||||
<arg name=\"updates\" type=\"a(sbb)\"/>
|
||||
</signal>
|
||||
</interface>
|
||||
...
|
||||
</node>"
|
||||
@end example
|
||||
|
||||
This example informs us, that the service @code{org.freedesktop.Hal}
|
||||
at object path @code{/org/freedesktop/Hal/devices/computer} offers the
|
||||
interface @code{org.freedesktop.Hal.Device} (and 2 other interfaces
|
||||
not documented here). This interface contains the method
|
||||
@code{GetAllProperties}, which needs no input parameters, but returns
|
||||
as output parameter an array of dictionary entries (key-value pairs).
|
||||
Every dictionary entry has a string as key, and a variant as value.
|
||||
|
||||
The interface offers also a signal, which returns 2 parameters: an
|
||||
integer, and an array consisting of elements which are a struct of a
|
||||
string and 2 boolean values.
|
||||
|
||||
Such type descriptions are called @dfn{signature} in D-Bus. For a
|
||||
discussion of D-Bus types and their Lisp representation see @ref{Type
|
||||
Conversion}.@footnote{D-Bus signatures are explained in the D-Bus
|
||||
specification
|
||||
@uref{http://dbus.freedesktop.org/doc/dbus-specification.html#message-protocol-signatures}.
|
||||
The interfaces of the service @code{org.freedesktop.Hal} are described
|
||||
at
|
||||
@uref{http://people.freedesktop.org/~david/hal-spec/hal-spec.html#interfaces}.}
|
||||
@end defun
|
||||
|
||||
|
||||
@node Type Conversion
|
||||
@chapter Mapping Lisp types and D-Bus types.
|
||||
@cindex type conversion
|
||||
|
||||
D-Bus method calls and signals accept usually several arguments as
|
||||
parameters, either as input parameter, or as output parameter. Every
|
||||
argument belongs to a D-Bus type.
|
||||
|
||||
Such arguments must be mapped between the the value encoded as a D-Bus
|
||||
type, and the corresponding type of Lisp objects. The mapping is
|
||||
applied Lisp object @expansion{} D-Bus type for input parameters, and
|
||||
D-Bus type @expansion{} Lisp object for output parameters.
|
||||
|
||||
|
||||
@section Input parameters.
|
||||
|
||||
Input parameters for D-Bus methods and signals occur as arguments of a
|
||||
Lisp function call. Only some primitive Lisp types are supported in
|
||||
the current implementation. The following mapping to D-Bus types is
|
||||
applied, when the corresponding D-Bus message is created:
|
||||
|
||||
@example
|
||||
@multitable {@code{t} and @code{nil}} {@expansion{}} {DBUS_TYPE_BOOLEAN}
|
||||
@item Lisp type @tab @tab D-Bus type
|
||||
@item
|
||||
@item @code{t} and @code{nil} @tab @expansion{} @tab DBUS_TYPE_BOOLEAN
|
||||
@item number @tab @expansion{} @tab DBUS_TYPE_UINT32
|
||||
@item integer @tab @expansion{} @tab DBUS_TYPE_INT32
|
||||
@item float @tab @expansion{} @tab DBUS_TYPE_DOUBLE
|
||||
@item string @tab @expansion{} @tab DBUS_TYPE_STRING
|
||||
@end multitable
|
||||
@end example
|
||||
|
||||
@noindent
|
||||
Other Lisp types, especially lists, are not supported (yet).
|
||||
|
||||
|
||||
@section Output parameters.
|
||||
|
||||
Output parameters of D-Bus methods and signals are mapped to Lisp
|
||||
objects. This mapping is more powerful than the one for input
|
||||
parameters, i.e., more D-Bus types are supported by the current
|
||||
implementation.
|
||||
|
||||
@example
|
||||
@multitable {DBUS_TYPE_OBJECT_PATH} {@expansion{}} {@code{t} or @code{nil}}
|
||||
@item D-Bus type @tab @tab Lisp type
|
||||
@item
|
||||
@item DBUS_TYPE_BOOLEAN @tab @expansion{} @tab @code{t} or @code{nil}
|
||||
@item DBUS_TYPE_UINT32 @tab @expansion{} @tab number
|
||||
@item DBUS_TYPE_INT32 @tab @expansion{} @tab number
|
||||
@item DBUS_TYPE_DOUBLE @tab @expansion{} @tab float
|
||||
@item DBUS_TYPE_STRING @tab @expansion{} @tab string
|
||||
@item DBUS_TYPE_OBJECT_PATH @tab @expansion{} @tab string
|
||||
@item DBUS_TYPE_ARRAY @tab @expansion{} @tab list
|
||||
@item DBUS_TYPE_VARIANT @tab @expansion{} @tab list
|
||||
@item DBUS_TYPE_STRUCT @tab @expansion{} @tab list
|
||||
@item DBUS_TYPE_DICT_ENTRY @tab @expansion{} @tab list
|
||||
@end multitable
|
||||
@end example
|
||||
|
||||
The resulting list of the last 4 D-Bus compound types contains as
|
||||
elements the elements of the D-Bus container, mapped according to the
|
||||
same rules.
|
||||
|
||||
The signal @code{PropertyModified}, discussed as example in
|
||||
@ref{Inspection}, would offer as Lisp data the following object
|
||||
(@var{BOOL} stands here for either @code{nil} or @code{t}):
|
||||
|
||||
@lisp
|
||||
(@var{NUMBER} ((@var{STRING} @var{BOOL} @var{BOOL}) (@var{STRING} @var{BOOL} @var{BOOL}) ...))
|
||||
@end lisp
|
||||
|
||||
|
||||
@node Synchronous Methods
|
||||
@chapter Calling methods in a blocking way.
|
||||
@cindex method calls, synchronous
|
||||
@cindex synchronous method calls
|
||||
|
||||
Methods can be called synchronously (@dfn{blocking}) or asynchronously
|
||||
(@dfn{non-blocking}). Currently, just synchronous methods are
|
||||
implemented.
|
||||
|
||||
At D-Bus level, a method call consist of two messages: one message
|
||||
which carries the input parameters to the object owning the method to
|
||||
be called, and a reply message returning the resulting output
|
||||
parameters from the object.
|
||||
|
||||
@defun dbus-call-method bus method service path interface &rest args
|
||||
This function calls @var{method} on the D-Bus @var{bus}. @var{bus} is
|
||||
either the symbol @code{:system} or the symbol @code{:session}.
|
||||
|
||||
@var{service} is the D-Bus service name to be used. @var{path} is the
|
||||
D-Bus object path, @var{service} is registered at. @var{interface} is
|
||||
an interface offered by @var{service}. It must provide @var{method}.
|
||||
|
||||
All other arguments args are passed to @var{method} as arguments.
|
||||
They are converted into D-Bus types as described in @ref{Type
|
||||
Conversion}.
|
||||
|
||||
The function returns the resulting values of @var{method} as a list of
|
||||
Lisp objects, according to the type conversion rules described in
|
||||
@ref{Type Conversion}. Example:
|
||||
|
||||
@example
|
||||
(dbus-call-method
|
||||
:session "GetKeyField" "org.gnome.seahorse"
|
||||
"/org/gnome/seahorse/keys/openpgp" "org.gnome.seahorse.Keys"
|
||||
"openpgp:657984B8C7A966DD" "simple-name")
|
||||
|
||||
@result{} (t ("Philip R. Zimmermann"))
|
||||
@end example
|
||||
|
||||
If the result of the method call is just one value, the converted Lisp
|
||||
object is returned instead of a list containing this single Lisp
|
||||
object. Example:
|
||||
|
||||
@example
|
||||
(dbus-call-method
|
||||
:system "GetPropertyString" "org.freedesktop.Hal"
|
||||
"/org/freedesktop/Hal/devices/computer" "org.freedesktop.Hal.Device"
|
||||
"system.kernel.machine")
|
||||
|
||||
@result{} "i686"
|
||||
@end example
|
||||
|
||||
With the @code{dbus-introspect} function it is possible to explore the
|
||||
interfaces of @samp{org.freedesktop.Hal} service. It offers the
|
||||
interfaces @samp{org.freedesktop.Hal.Manager} for the object at the
|
||||
path @samp{/org/freedesktop/Hal/Manager} as well as the interface
|
||||
@samp{org.freedesktop.Hal.Device} for all objects prefixed with the
|
||||
path @samp{/org/freedesktop/Hal/devices}. With the methods
|
||||
@samp{GetAllDevices} and @samp{GetAllProperties}, it is simple to
|
||||
emulate the @code{lshal} command on GNU/Linux systems:
|
||||
|
||||
@example
|
||||
(dolist (device
|
||||
(dbus-call-method
|
||||
:system "GetAllDevices" "org.freedesktop.Hal"
|
||||
"/org/freedesktop/Hal/Manager"
|
||||
"org.freedesktop.Hal.Manager"))
|
||||
(message "\nudi = %s" device)
|
||||
(dolist (properties
|
||||
(dbus-call-method
|
||||
:system "GetAllProperties" "org.freedesktop.Hal"
|
||||
device "org.freedesktop.Hal.Device"))
|
||||
(message " %s = %S"
|
||||
(car properties) (or (caar (cdr properties)) ""))))
|
||||
|
||||
@print{} "udi = /org/freedesktop/Hal/devices/computer
|
||||
info.addons = (\"hald-addon-acpi\")
|
||||
info.bus = \"unknown\"
|
||||
info.product = \"Computer\"
|
||||
info.subsystem = \"unknown\"
|
||||
info.udi = \"/org/freedesktop/Hal/devices/computer\"
|
||||
linux.sysfs_path_device = \"(none)\"
|
||||
power_management.acpi.linux.version = \"20051216\"
|
||||
power_management.can_suspend_to_disk = t
|
||||
power_management.can_suspend_to_ram = \"\"
|
||||
power_management.type = \"acpi\"
|
||||
smbios.bios.release_date = \"11/07/2001\"
|
||||
system.chassis.manufacturer = \"COMPAL\"
|
||||
system.chassis.type = \"Notebook\"
|
||||
system.firmware.release_date = \"03/19/2005\"
|
||||
..."
|
||||
@end example
|
||||
@end defun
|
||||
|
||||
|
||||
@node Signals
|
||||
@chapter Sending and receiving signals.
|
||||
@cindex signals
|
||||
|
||||
Signals are broadcast messages. They carry input parameters, which
|
||||
are received by all objects which have registered for such a signal.
|
||||
|
||||
@defun dbus-send-signal bus signal service path interface &rest args
|
||||
This function is similar to @code{dbus-call-method}. The difference
|
||||
is, that there are no returning output parameters.
|
||||
|
||||
The function emits @var{signal} on the D-Bus @var{bus}. @var{bus} is
|
||||
either the symbol @code{:system} or the symbol @code{:session}. It
|
||||
doesn't matter whether another object has registered for @var{signal}.
|
||||
|
||||
@var{service} is the D-Bus service name of the object the signal is
|
||||
emitted from. @var{path} is the corresponding D-Bus object path,
|
||||
@var{service} is registered at. @var{interface} is an interface
|
||||
offered by @var{service}. It must provide @var{signal}.
|
||||
|
||||
All other arguments args are passed to @var{signal} as arguments.
|
||||
They are converted into D-Bus types as described in @ref{Type
|
||||
Conversion}. Example:
|
||||
|
||||
@example
|
||||
(dbus-send-signal
|
||||
:session "FileModified" "org.gnu.Emacs" "/org/gnu/Emacs"
|
||||
"org.gnu.Emacs.FileManager" "/home/albinus/.emacs")
|
||||
@end example
|
||||
@end defun
|
||||
|
||||
@defun dbus-register-signal bus signal service path interface handler
|
||||
With this function, an application registers for @var{signal} on the
|
||||
D-Bus @var{bus}.
|
||||
|
||||
@var{bus} is either the symbol @code{:system} or the symbol
|
||||
@code{:session}.
|
||||
|
||||
@var{service} is the D-Bus service name used by the sending D-Bus
|
||||
object. It can be either a known name or the unique name of the D-Bus
|
||||
object sending the signal. In case of a unique name, signals won't be
|
||||
received any longer once the object owning this unique name has
|
||||
disappeared, and a new queued object has replaced it.
|
||||
|
||||
When @var{service} is @code{nil}, related signals from all D-Bus
|
||||
objects shall be accepted.
|
||||
|
||||
@var{path} is the corresponding D-Bus object path, @var{service} is
|
||||
registered at. It can also be @code{nil} if the path name of incoming
|
||||
signals shall not be checked.
|
||||
|
||||
@var{interface} is an interface offered by @var{service}. It must
|
||||
provide @var{signal}.
|
||||
|
||||
@var{handler} is a Lisp function to be called when the @var{signal} is
|
||||
received. It must accept as arguments the output parameters
|
||||
@var{signal} is sending. Example:
|
||||
|
||||
@example
|
||||
(defun my-dbus-signal-handler (device)
|
||||
(message "Device %s added" device))
|
||||
|
||||
(dbus-register-signal
|
||||
:system "DeviceAdded"
|
||||
(dbus-get-name-owner :system "org.freedesktop.Hal")
|
||||
"/org/freedesktop/Hal/Manager" "org.freedesktop.Hal.Manager"
|
||||
'my-dbus-signal-handler)
|
||||
|
||||
@result{} (:system "org.freedesktop.Hal.Manager" "DeviceAdded")
|
||||
@end example
|
||||
|
||||
As we know from the inspection data of interface
|
||||
@code{org.freedesktop.Hal.Manager}, the signal @code{DeviceAdded}
|
||||
provides one single parameter, which is mapped into a Lisp string.
|
||||
The callback function @code{my-dbus-signal-handler} must define one
|
||||
single string argument therefore. Plugging an USB device to your
|
||||
machine, when registered for signal @code{DeviceAdded}, will show you
|
||||
which objects the GNU/Linux @code{hal} daemon adds.
|
||||
|
||||
@code{dbus-register-signal} returns a Lisp symbol, which can be used
|
||||
as argument in @code{dbus-unregister-signal} for removing the
|
||||
registration for @var{signal}.
|
||||
@end defun
|
||||
|
||||
@defun dbus-unregister-signal object
|
||||
Unregister @var{object} from the the D-Bus. @var{object} must be the
|
||||
result of a preceding @code{dbus-register-signal} call.
|
||||
@end defun
|
||||
|
||||
|
||||
@node Errors and Events
|
||||
@chapter Errors and events.
|
||||
@cindex errors
|
||||
@cindex events
|
||||
|
||||
All errors raised by D-Bus are signaled with the error symbol
|
||||
@code{dbus-error}. As usual, such an error can be trapped with a
|
||||
@code{condition-case} form. If possible, error messages from D-Bus
|
||||
are appended to the @code{dbus-error}.
|
||||
|
||||
Incoming D-Bus messages are handled as Emacs events (see @pxref{Misc
|
||||
Events, , , elisp}). The generated event has this form:
|
||||
|
||||
@example
|
||||
(dbus-event @var{handler} @var{bus} @var{service} @var{path} @var{interface} @var{member} &rest @var{args})
|
||||
@end example
|
||||
|
||||
@var{handler} is the callback function which has been registered for
|
||||
this signal (see @pxref{Signals}). When a @code{dbus-event} event
|
||||
arrives, @var{handler} is called with @var{args} as arguments.
|
||||
|
||||
@var{bus} identifies the D-Bus the signal is coming from. It is
|
||||
either the symbol @code{:system} or the symbol @code{:session}.
|
||||
|
||||
@var{service} and @var{path} are the unique name and the object path
|
||||
of the D-Bus object emitting the signal. @var{interface} and
|
||||
@var{member} denote the signal which has been sent.
|
||||
|
||||
In order to inspect the @code{dbus-event} data, you could extend the
|
||||
definition of the callback function in @ref{Signals}:
|
||||
|
||||
@example
|
||||
(defun my-dbus-signal-handler (&rest args)
|
||||
(message "my-dbus-signal-handler: %S" last-input-event))
|
||||
@end example
|
||||
|
||||
There exist convenience functions which could be called inside a
|
||||
callback function in order to retrieve the information from the event.
|
||||
|
||||
@defun dbus-event-bus-name event
|
||||
Returns the bus name @var{event} is coming from.
|
||||
The result is either the symbol @code{:system} or the symbol @code{:session}.
|
||||
@end defun
|
||||
|
||||
@defun dbus-event-service-name event
|
||||
Returns the unique name of the D-Bus object @var{event} is coming from.
|
||||
@end defun
|
||||
|
||||
@defun dbus-event-path-name event
|
||||
Returns the object path of the D-Bus object @var{event} is coming from.
|
||||
@end defun
|
||||
|
||||
@defun dbus-event-interface-name event
|
||||
Returns the interface name of of the D-Bus object @var{event} is coming from.
|
||||
@end defun
|
||||
|
||||
@defun dbus-event-member-name event
|
||||
Returns the member name of of the D-Bus object @var{event} is coming
|
||||
from. It is either a signal name or a method name.
|
||||
@end defun
|
||||
|
||||
|
||||
@node GNU Free Documentation License
|
||||
@appendix GNU Free Documentation License
|
||||
@include doclicense.texi
|
||||
|
||||
@contents
|
||||
@c End of dbus.texi
|
||||
@bye
|
||||
|
||||
@ignore
|
||||
arch-tag: 2eeec19d-0caf-44e0-a193-329d7f9951d8
|
||||
@end ignore
|
|
@ -1417,10 +1417,23 @@ This is an alist of encoding / function pairs. The encodings are
|
|||
@vindex rfc2047-encoded-word-regexp
|
||||
When decoding words, this library looks for matches to this regexp.
|
||||
|
||||
@item rfc2047-encoded-word-regexp-loose
|
||||
@vindex rfc2047-encoded-word-regexp-loose
|
||||
This is a version from which the regexp for the Q encoding pattern of
|
||||
@code{rfc2047-encoded-word-regexp} is made loose.
|
||||
|
||||
@item rfc2047-encode-encoded-words
|
||||
@vindex rfc2047-encode-encoded-words
|
||||
The boolean variable specifies whether encoded words
|
||||
(e.g. @samp{=?hello?=}) should be encoded again.
|
||||
(e.g. @samp{=?us-ascii?q?hello?=}) should be encoded again.
|
||||
@code{rfc2047-encoded-word-regexp} is used to look for such words.
|
||||
|
||||
@item rfc2047-allow-irregular-q-encoded-words
|
||||
@vindex rfc2047-allow-irregular-q-encoded-words
|
||||
The boolean variable specifies whether irregular Q encoded words
|
||||
(e.g. @samp{=?us-ascii?q?hello??=}) should be decoded. If it is
|
||||
non-@code{nil}, @code{rfc2047-encoded-word-regexp-loose} is used instead
|
||||
of @code{rfc2047-encoded-word-regexp} to look for encoded words.
|
||||
|
||||
@end table
|
||||
|
||||
|
|
|
@ -413,12 +413,9 @@ First, we write the @code{init-function}:
|
|||
(defun flymake-perl-init ()
|
||||
(let* ((temp-file (flymake-init-create-temp-buffer-copy
|
||||
'flymake-create-temp-inplace))
|
||||
(local-file (concat (flymake-build-relative-filename
|
||||
(file-name-directory
|
||||
(buffer-file-name
|
||||
(current-buffer)))
|
||||
(file-name-directory temp-file))
|
||||
(file-name-nondirectory temp-file))))
|
||||
(local-file (file-relative-name
|
||||
temp-file
|
||||
(file-name-directory buffer-file-name))))
|
||||
(list "perl" (list "-wc " local-file))))
|
||||
@end lisp
|
||||
|
||||
|
|
|
@ -8175,6 +8175,11 @@ Save the current series
|
|||
@findex gnus-uu-decode-binhex
|
||||
Unbinhex the current series (@code{gnus-uu-decode-binhex}). This
|
||||
doesn't really work yet.
|
||||
|
||||
@item X Y
|
||||
@kindex X Y (Summary)
|
||||
@findex gnus-uu-decode-yenc
|
||||
yEnc-decode the current series and save it (@code{gnus-uu-decode-yenc}).
|
||||
@end table
|
||||
|
||||
|
||||
|
@ -9740,7 +9745,7 @@ To have all Vcards be ignored, you'd say something like this:
|
|||
If non-@code{nil}, Gnus won't require the @samp{MIME-Version} header
|
||||
before interpreting the message as a @acronym{MIME} message. This helps
|
||||
when reading messages from certain broken mail user agents. The
|
||||
default is @code{nil}.
|
||||
default is @code{t}.
|
||||
|
||||
@item gnus-article-emulate-mime
|
||||
@vindex gnus-article-emulate-mime
|
||||
|
@ -14649,14 +14654,12 @@ If non-@code{nil}, name of program for fetching new mail. If
|
|||
@subsubsection Fetching Mail
|
||||
|
||||
@vindex mail-sources
|
||||
@vindex nnmail-spool-file
|
||||
The way to actually tell Gnus where to get new mail from is to set
|
||||
@code{mail-sources} to a list of mail source specifiers
|
||||
(@pxref{Mail Source Specifiers}).
|
||||
|
||||
If this variable (and the obsolescent @code{nnmail-spool-file}) is
|
||||
@code{nil}, the mail back ends will never attempt to fetch mail by
|
||||
themselves.
|
||||
If this variable is @code{nil}, the mail back ends will never attempt to
|
||||
fetch mail by themselves.
|
||||
|
||||
If you want to fetch mail both from your local spool as well as a
|
||||
@acronym{POP} mail server, you'd say something like:
|
||||
|
@ -14865,10 +14868,10 @@ body of the messages:
|
|||
"string.group"))))
|
||||
@end lisp
|
||||
|
||||
The buffer is narrowed to the message in question when @var{function}
|
||||
is run. That's why @code{(widen)} needs to be called after
|
||||
@code{save-excursion} and @code{save-restriction} in the example
|
||||
above. Also note that with the nnimap back end, message bodies will
|
||||
The buffer is narrowed to the header of the message in question when
|
||||
@var{function} is run. That's why @code{(widen)} needs to be called
|
||||
after @code{save-excursion} and @code{save-restriction} in the example
|
||||
above. Also note that with the nnimap backend, message bodies will
|
||||
not be downloaded by default. You need to set
|
||||
@code{nnimap-split-download-body} to @code{t} to do that
|
||||
(@pxref{Splitting in IMAP}).
|
||||
|
|
|
@ -31,27 +31,27 @@ infodir = $(srcdir)/../../info
|
|||
MAKEINFO = makeinfo --force
|
||||
MULTI_INSTALL_INFO = $(srcdir)\..\..\nt\multi-install-info.bat
|
||||
INFO_TARGETS = $(infodir)/ccmode \
|
||||
$(infodir)/cl $(infodir)/dired-x $(infodir)/ediff \
|
||||
$(infodir)/forms $(infodir)/gnus $(infodir)/message \
|
||||
$(infodir)/sieve $(infodir)/pgg $(infodir)/emacs-mime \
|
||||
$(infodir)/info $(infodir)/mh-e $(infodir)/reftex \
|
||||
$(infodir)/sc $(infodir)/vip $(infodir)/viper \
|
||||
$(infodir)/widget $(infodir)/efaq $(infodir)/ada-mode \
|
||||
$(infodir)/autotype $(infodir)/calc $(infodir)/idlwave \
|
||||
$(infodir)/eudc $(infodir)/ebrowse $(infodir)/pcl-cvs \
|
||||
$(infodir)/woman $(infodir)/eshell $(infodir)/org \
|
||||
$(infodir)/url $(infodir)/speedbar $(infodir)/tramp \
|
||||
$(infodir)/ses $(infodir)/smtpmail $(infodir)/flymake \
|
||||
$(infodir)/newsticker $(infodir)/rcirc $(infodir)/erc \
|
||||
$(infodir)/remember
|
||||
DVI_TARGETS = calc.dvi cc-mode.dvi cl.dvi dired-x.dvi \
|
||||
ediff.dvi forms.dvi gnus.dvi message.dvi emacs-mime.dvi \
|
||||
gnus.dvi message.dvi sieve.dvi pgg.dvi mh-e.dvi \
|
||||
reftex.dvi sc.dvi vip.dvi viper.dvi widget.dvi faq.dvi \
|
||||
ada-mode.dvi autotype.dvi idlwave.dvi eudc.dvi ebrowse.dvi \
|
||||
pcl-cvs.dvi woman.dvi eshell.dvi org.dvi url.dvi \
|
||||
speedbar.dvi tramp.dvi ses.dvi smtpmail.dvi flymake.dvi \
|
||||
newsticker.dvi rcirc.dvi erc.dvi remember.dvi
|
||||
$(infodir)/cl $(infodir)/dbus $(infodir)/dired-x \
|
||||
$(infodir)/ediff $(infodir)/forms $(infodir)/gnus \
|
||||
$(infodir)/message $(infodir)/sieve $(infodir)/pgg \
|
||||
$(infodir)/emacs-mime $(infodir)/info $(infodir)/mh-e \
|
||||
$(infodir)/reftex $(infodir)/sc $(infodir)/vip \
|
||||
$(infodir)/viper $(infodir)/widget $(infodir)/efaq \
|
||||
$(infodir)/ada-mode $(infodir)/autotype $(infodir)/calc \
|
||||
$(infodir)/idlwave $(infodir)/eudc $(infodir)/ebrowse \
|
||||
$(infodir)/pcl-cvs $(infodir)/woman $(infodir)/eshell \
|
||||
$(infodir)/org $(infodir)/url $(infodir)/speedbar \
|
||||
$(infodir)/tramp $(infodir)/ses $(infodir)/smtpmail \
|
||||
$(infodir)/flymake $(infodir)/newsticker $(infodir)/rcirc \
|
||||
$(infodir)/erc $(infodir)/remember $(infodir)/nxml-mode
|
||||
DVI_TARGETS = calc.dvi cc-mode.dvi cl.dvi dbus.dvi dired-x.dvi \
|
||||
ediff.dvi forms.dvi gnus.dvi message.dvi emacs-mime.dvi \
|
||||
gnus.dvi message.dvi sieve.dvi pgg.dvi mh-e.dvi \
|
||||
reftex.dvi sc.dvi vip.dvi viper.dvi widget.dvi faq.dvi \
|
||||
ada-mode.dvi autotype.dvi idlwave.dvi eudc.dvi ebrowse.dvi \
|
||||
pcl-cvs.dvi woman.dvi eshell.dvi org.dvi url.dvi \
|
||||
speedbar.dvi tramp.dvi ses.dvi smtpmail.dvi flymake.dvi \
|
||||
newsticker.dvi rcirc.dvi erc.dvi remember.dvi nxml-mode.dvi
|
||||
INFOSOURCES = info.texi
|
||||
|
||||
# The following rule does not work with all versions of `make'.
|
||||
|
@ -114,6 +114,11 @@ $(infodir)/cl: cl.texi
|
|||
cl.dvi: cl.texi
|
||||
$(ENVADD) $(TEXI2DVI) $(srcdir)/cl.texi
|
||||
|
||||
$(infodir)/dbus: dbus.texi
|
||||
$(MAKEINFO) dbus.texi
|
||||
dbus.dvi: dbus.texi
|
||||
$(ENVADD) $(TEXI2DVI) $(srcdir)/dbus.texi
|
||||
|
||||
$(infodir)/dired-x: dired-x.texi
|
||||
$(MAKEINFO) dired-x.texi
|
||||
dired-x.dvi: dired-x.texi
|
||||
|
@ -271,6 +276,11 @@ $(infodir)/newsticker: newsticker.texi
|
|||
newsticker.dvi: newsticker.texi
|
||||
$(ENVADD) $(TEXI2DVI) $(srcdir)/newsticker.texi
|
||||
|
||||
$(infodir)/nxml-mode: nxml-mode.texi
|
||||
$(MAKEINFO) nxml-mode.texi
|
||||
nxml-mod.dvi: nxml-mode.texi
|
||||
$(ENVADD) $(TEXI2DVI) $(srcdir)/nxml-mode.texi
|
||||
|
||||
$(infodir)/rcirc: rcirc.texi
|
||||
$(MAKEINFO) rcirc.texi
|
||||
rcirc.dvi: rcirc.texi
|
||||
|
@ -286,8 +296,8 @@ mostlyclean:
|
|||
|
||||
clean: mostlyclean
|
||||
- $(DEL) *.dvi
|
||||
- $(DEL) $(infodir)/ccmode* \
|
||||
$(infodir)/cl* $(infodir)/dired-x* \
|
||||
- $(DEL) $(infodir)/ccmode* $(infodir)/cl* \
|
||||
$(infodir)/dbus* $(infodir)/dired-x* \
|
||||
$(infodir)/ediff* $(infodir)/forms* \
|
||||
$(infodir)/gnus* $(infodir)/info* \
|
||||
$(infodir)/message* $(infodir)/mh-e* \
|
||||
|
@ -304,7 +314,7 @@ clean: mostlyclean
|
|||
$(infodir)/flymake* $(infodir)/newsticker* \
|
||||
$(infodir)/sieve* $(infodir)/pgg* \
|
||||
$(infodir)/erc* $(infodir)/rcirc* \
|
||||
$(infodir)/remember*
|
||||
$(infodir)/remember* $(infodir)/nxml-mode*
|
||||
|
||||
distclean: clean
|
||||
|
||||
|
|
838
doc/misc/nxml-mode.texi
Normal file
838
doc/misc/nxml-mode.texi
Normal file
|
@ -0,0 +1,838 @@
|
|||
\input texinfo @c -*- texinfo -*-
|
||||
@c %**start of header
|
||||
@setfilename ../../info/nxml-mode
|
||||
@settitle nXML Mode
|
||||
@c %**end of header
|
||||
|
||||
@dircategory Emacs
|
||||
@direntry
|
||||
* nXML Mode: (nxml-mode). XML editing mode with RELAX NG support.
|
||||
@end direntry
|
||||
|
||||
@node Top
|
||||
@top nXML Mode
|
||||
|
||||
This manual documents nxml-mode, an Emacs major mode for editing
|
||||
XML with RELAX NG support. This manual is not yet complete.
|
||||
|
||||
@menu
|
||||
* Completion::
|
||||
* Inserting end-tags::
|
||||
* Paragraphs::
|
||||
* Outlining::
|
||||
* Locating a schema::
|
||||
* DTDs::
|
||||
* Limitations::
|
||||
@end menu
|
||||
|
||||
@node Completion
|
||||
@chapter Completion
|
||||
|
||||
Apart from real-time validation, the most important feature that
|
||||
nxml-mode provides for assisting in document creation is "completion".
|
||||
Completion assists the user in inserting characters at point, based on
|
||||
knowledge of the schema and on the contents of the buffer before
|
||||
point.
|
||||
|
||||
The traditional GNU Emacs key combination for completion in a
|
||||
buffer is @kbd{M-@key{TAB}}. However, many window systems
|
||||
and window managers use this key combination themselves (typically for
|
||||
switching between windows) and do not pass it to applications. It's
|
||||
hard to find key combinations in GNU Emacs that are both easy to type
|
||||
and not taken by something else. @kbd{C-@key{RET}} (i.e.
|
||||
pressing the Enter or Return key, while the Ctrl key is held down) is
|
||||
available. It won't be available on a traditional terminal (because
|
||||
it is indistinguishable from Return), but it will work with a window
|
||||
system. Therefore we adopt the following solution by default: use
|
||||
@kbd{C-@key{RET}} when there's a window system and
|
||||
@kbd{M-@key{TAB}} when there's not. In the following, I
|
||||
will assume that a window system is being used and will therefore
|
||||
refer to @kbd{C-@key{RET}}.
|
||||
|
||||
Completion works by examining the symbol preceding point. This
|
||||
is the symbol to be completed. The symbol to be completed may be the
|
||||
empty. Completion considers what symbols starting with the symbol to
|
||||
be completed would be valid replacements for the symbol to be
|
||||
completed, given the schema and the contents of the buffer before
|
||||
point. These symbols are the possible completions. An example may
|
||||
make this clearer. Suppose the buffer looks like this (where @point{}
|
||||
indicates point):
|
||||
|
||||
@example
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<h@point{}
|
||||
@end example
|
||||
|
||||
@noindent
|
||||
and the schema is XHTML. In this context, the symbol to be completed
|
||||
is @samp{h}. The possible completions consist of just
|
||||
@samp{head}. Another example, is
|
||||
|
||||
@example
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<@point{}
|
||||
@end example
|
||||
|
||||
@noindent
|
||||
In this case, the symbol to be completed is empty, and the possible
|
||||
completions are @samp{base}, @samp{isindex},
|
||||
@samp{link}, @samp{meta}, @samp{script},
|
||||
@samp{style}, @samp{title}. Another example is:
|
||||
|
||||
@example
|
||||
<html xmlns="@point{}
|
||||
@end example
|
||||
|
||||
@noindent
|
||||
In this case, the symbol to be completed is empty, and the possible
|
||||
completions are just @samp{http://www.w3.org/1999/xhtml}.
|
||||
|
||||
When you type @kbd{C-@key{RET}}, what happens depends
|
||||
on what the set of possible completions are.
|
||||
|
||||
@itemize @bullet
|
||||
@item
|
||||
If the set of completions is empty, nothing
|
||||
happens.
|
||||
@item
|
||||
If there is one possible completion, then that completion is
|
||||
inserted, together with any following characters that are
|
||||
required. For example, in this case:
|
||||
|
||||
@example
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<@point{}
|
||||
@end example
|
||||
|
||||
@noindent
|
||||
@kbd{C-@key{RET}} will yield
|
||||
|
||||
@example
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head@point{}
|
||||
@end example
|
||||
@item
|
||||
If there is more than one possible completion, but all
|
||||
possible completions share a common non-empty prefix, then that prefix
|
||||
is inserted. For example, suppose the buffer is:
|
||||
|
||||
@example
|
||||
<html x@point{}
|
||||
@end example
|
||||
|
||||
@noindent
|
||||
The symbol to be completed is @samp{x}. The possible completions
|
||||
are @samp{xmlns} and @samp{xml:lang}. These share a
|
||||
common prefix of @samp{xml}. Thus, @kbd{C-@key{RET}}
|
||||
will yield:
|
||||
|
||||
@example
|
||||
<html xml@point{}
|
||||
@end example
|
||||
|
||||
@noindent
|
||||
Typically, you would do @kbd{C-@key{RET}} again, which would
|
||||
have the result described in the next item.
|
||||
@item
|
||||
If there is more than one possible completion, but the
|
||||
possible completions do not share a non-empty prefix, then Emacs will
|
||||
prompt you to input the symbol in the minibuffer, initializing the
|
||||
minibuffer with the symbol to be completed, and popping up a buffer
|
||||
showing the possible completions. You can now input the symbol to be
|
||||
inserted. The symbol you input will be inserted in the buffer instead
|
||||
of the symbol to be completed. Emacs will then insert any required
|
||||
characters after the symbol. For example, if it contains:
|
||||
|
||||
@example
|
||||
<html xml@point{}
|
||||
@end example
|
||||
|
||||
@noindent
|
||||
Emacs will prompt you in the minibuffer with
|
||||
|
||||
@example
|
||||
Attribute: xml@point{}
|
||||
@end example
|
||||
|
||||
@noindent
|
||||
and the buffer showing possible completions will contain
|
||||
|
||||
@example
|
||||
Possible completions are:
|
||||
xml:lang xmlns
|
||||
@end example
|
||||
|
||||
@noindent
|
||||
If you input @kbd{xmlns}, the result will be:
|
||||
|
||||
@example
|
||||
<html xmlns="@point{}
|
||||
@end example
|
||||
|
||||
@noindent
|
||||
(If you do @kbd{C-@key{RET}} again, the namespace URI will
|
||||
be inserted. Should that happen automatically?)
|
||||
@end itemize
|
||||
|
||||
@node Inserting end-tags
|
||||
@chapter Inserting end-tags
|
||||
|
||||
The main redundancy in XML syntax is end-tags. nxml-mode provides
|
||||
several ways to make it easier to enter end-tags. You can use all of
|
||||
these without a schema.
|
||||
|
||||
You can use @kbd{C-@key{RET}} after @samp{</}
|
||||
to complete the rest of the end-tag.
|
||||
|
||||
@kbd{C-c C-f} inserts an end-tag for the element containing
|
||||
point. This command is useful when you want to input the start-tag,
|
||||
then input the content and finally input the end-tag. The @samp{f}
|
||||
is mnemonic for finish.
|
||||
|
||||
If you want to keep tags balanced and input the end-tag at the
|
||||
same time as the start-tag, before inputting the content, then you can
|
||||
use @kbd{C-c C-i}. This inserts a @samp{>}, then inserts
|
||||
the end-tag and leaves point before the end-tag. @kbd{C-c C-b}
|
||||
is similar but more convenient for block-level elements: it puts the
|
||||
start-tag, point and the end-tag on successive lines, appropriately
|
||||
indented. The @samp{i} is mnemonic for inline and the
|
||||
@samp{b} is mnemonic for block.
|
||||
|
||||
Finally, you can customize nxml-mode so that @kbd{/}
|
||||
automatically inserts the rest of the end-tag when it occurs after
|
||||
@samp{<}, by doing
|
||||
|
||||
@display
|
||||
@kbd{M-x customize-variable @key{RET} nxml-slash-auto-complete-flag @key{RET}}
|
||||
@end display
|
||||
|
||||
@noindent
|
||||
and then following the instructions in the displayed buffer.
|
||||
|
||||
@node Paragraphs
|
||||
@chapter Paragraphs
|
||||
|
||||
Emacs has several commands that operate on paragraphs, most
|
||||
notably @kbd{M-q}. nXML mode redefines these to work in a way
|
||||
that is useful for XML. The exact rules that are used to find the
|
||||
beginning and end of a paragraph are complicated; they are designed
|
||||
mainly to ensure that @kbd{M-q} does the right thing.
|
||||
|
||||
A paragraph consists of one or more complete, consecutive lines.
|
||||
A group of lines is not considered a paragraph unless it contains some
|
||||
non-whitespace characters between tags or inside comments. A blank
|
||||
line separates paragraphs. A single tag on a line by itself also
|
||||
separates paragraphs. More precisely, if one tag together with any
|
||||
leading and trailing whitespace completely occupy one or more lines,
|
||||
then those lines will not be included in any paragraph.
|
||||
|
||||
A start-tag at the beginning of the line (possibly indented) may
|
||||
be treated as starting a paragraph. Similarly, an end-tag at the end
|
||||
of the line may be treated as ending a paragraph. The following rules
|
||||
are used to determine whether such a tag is in fact treated as a
|
||||
paragraph boundary:
|
||||
|
||||
@itemize @bullet
|
||||
@item
|
||||
If the schema does not allow text at that point, then it
|
||||
is a paragraph boundary.
|
||||
@item
|
||||
If the end-tag corresponding to the start-tag is not at
|
||||
the end of its line, or the start-tag corresponding to the end-tag is
|
||||
not at the beginning of its line, then it is not a paragraph
|
||||
boundary. For example, in
|
||||
|
||||
@example
|
||||
<p>This is a paragraph with an
|
||||
<emph>emphasized</emph> phrase.
|
||||
@end example
|
||||
|
||||
@noindent
|
||||
the @samp{<emph>} start-tag would not be considered as
|
||||
starting a paragraph, because its corresponding end-tag is not at the
|
||||
end of the line.
|
||||
@item
|
||||
If there is text that is a sibling in element tree, then
|
||||
it is not a paragraph boundary. For example, in
|
||||
|
||||
@example
|
||||
<p>This is a paragraph with an
|
||||
<emph>emphasized phrase that takes one source line</emph>
|
||||
@end example
|
||||
|
||||
@noindent
|
||||
the @samp{<emph>} start-tag would not be considered as
|
||||
starting a paragraph, even though its end-tag is at the end of its
|
||||
line, because there the text @samp{This is a paragraph with an}
|
||||
is a sibling of the @samp{emph} element.
|
||||
@item
|
||||
Otherwise, it is a paragraph boundary.
|
||||
@end itemize
|
||||
|
||||
@node Outlining
|
||||
@chapter Outlining
|
||||
|
||||
nXML mode allows you to display all or part of a buffer as an
|
||||
outline, in a similar way to Emacs' outline mode. An outline in nXML
|
||||
mode is based on recognizing two kinds of element: sections and
|
||||
headings. There is one heading for every section and one section for
|
||||
every heading. A section contains its heading as or within its first
|
||||
child element. A section also contains its subordinate sections (its
|
||||
subsections). The text content of a section consists of anything in a
|
||||
section that is neither a subsection nor a heading.
|
||||
|
||||
Note that this is a different model from that used by XHTML.
|
||||
nXML mode's outline support will not be useful for XHTML unless you
|
||||
adopt a convention of adding a @code{div} to enclose each
|
||||
section, rather than having sections implicitly delimited by different
|
||||
@code{h@var{n}} elements. This limitation may be removed
|
||||
in a future version.
|
||||
|
||||
The variable @code{nxml-section-element-name-regexp} gives
|
||||
a regexp for the local names (i.e. the part of the name following any
|
||||
prefix) of section elements. The variable
|
||||
@code{nxml-heading-element-name-regexp} gives a regexp for the
|
||||
local names of heading elements. For an element to be recognized
|
||||
as a section
|
||||
|
||||
@itemize @bullet
|
||||
@item
|
||||
its start-tag must occur at the beginning of a line
|
||||
(possibly indented);
|
||||
@item
|
||||
its local name must match
|
||||
@code{nxml-section-element-name-regexp};
|
||||
@item
|
||||
either its first child element or a descendant of that
|
||||
first child element must have a local name that matches
|
||||
@code{nxml-heading-element-name-regexp}; the first such element
|
||||
is treated as the section's heading.
|
||||
@end itemize
|
||||
|
||||
@noindent
|
||||
You can customize these variables using @kbd{M-x
|
||||
customize-variable}.
|
||||
|
||||
There are three possible outline states for a section:
|
||||
|
||||
@itemize @bullet
|
||||
@item
|
||||
normal, showing everything, including its heading, text
|
||||
content and subsections; each subsection is displayed according to the
|
||||
state of that subsection;
|
||||
@item
|
||||
showing just its heading, with both its text content and
|
||||
its subsections hidden; all subsections are hidden regardless of their
|
||||
state;
|
||||
@item
|
||||
showing its heading and its subsections, with its text
|
||||
content hidden; each subsection is displayed according to the state of
|
||||
that subsection.
|
||||
@end itemize
|
||||
|
||||
In the last two states, where the text content is hidden, the
|
||||
heading is displayed specially, in an abbreviated form. An element
|
||||
like this:
|
||||
|
||||
@example
|
||||
<section>
|
||||
<title>Food</title>
|
||||
<para>There are many kinds of food.</para>
|
||||
</section>
|
||||
@end example
|
||||
|
||||
@noindent
|
||||
would be displayed on a single line like this:
|
||||
|
||||
@example
|
||||
<-section>Food...</>
|
||||
@end example
|
||||
|
||||
@noindent
|
||||
If there are hidden subsections, then a @code{+} will be used
|
||||
instead of a @code{-} like this:
|
||||
|
||||
@example
|
||||
<+section>Food...</>
|
||||
@end example
|
||||
|
||||
@noindent
|
||||
If there are non-hidden subsections, then the section will instead be
|
||||
displayed like this:
|
||||
|
||||
@example
|
||||
<-section>Food...
|
||||
<-section>Delicious Food...</>
|
||||
<-section>Distasteful Food...</>
|
||||
</-section>
|
||||
@end example
|
||||
|
||||
@noindent
|
||||
The heading is always displayed with an indent that corresponds to its
|
||||
depth in the outline, even it is not actually indented in the buffer.
|
||||
The variable @code{nxml-outline-child-indent} controls how much
|
||||
a subheading is indented with respect to its parent heading when the
|
||||
heading is being displayed specially.
|
||||
|
||||
Commands to change the outline state of sections are bound to
|
||||
key sequences that start with @kbd{C-c C-o} (@kbd{o} is
|
||||
mnemonic for outline). The third and final key has been chosen to be
|
||||
consistent with outline mode. In the following descriptions
|
||||
current section means the section containing point, or, more precisely,
|
||||
the innermost section containing the character immediately following
|
||||
point.
|
||||
|
||||
@itemize @bullet
|
||||
@item
|
||||
@kbd{C-c C-o C-a} shows all sections in the buffer
|
||||
normally.
|
||||
@item
|
||||
@kbd{C-c C-o C-t} hides the text content
|
||||
of all sections in the buffer.
|
||||
@item
|
||||
@kbd{C-c C-o C-c} hides the text content
|
||||
of the current section.
|
||||
@item
|
||||
@kbd{C-c C-o C-e} shows the text content
|
||||
of the current section.
|
||||
@item
|
||||
@kbd{C-c C-o C-d} hides the text content
|
||||
and subsections of the current section.
|
||||
@item
|
||||
@kbd{C-c C-o C-s} shows the current section
|
||||
and all its direct and indirect subsections normally.
|
||||
@item
|
||||
@kbd{C-c C-o C-k} shows the headings of the
|
||||
direct and indirect subsections of the current section.
|
||||
@item
|
||||
@kbd{C-c C-o C-l} hides the text content of the
|
||||
current section and of its direct and indirect
|
||||
subsections.
|
||||
@item
|
||||
@kbd{C-c C-o C-i} shows the headings of the
|
||||
direct subsections of the current section.
|
||||
@item
|
||||
@kbd{C-c C-o C-o} hides as much as possible without
|
||||
hiding the current section's text content; the headings of ancestor
|
||||
sections of the current section and their child section sections will
|
||||
not be hidden.
|
||||
@end itemize
|
||||
|
||||
When a heading is displayed specially, you can use
|
||||
@key{RET} in that heading to show the text content of the section
|
||||
in the same way as @kbd{C-c C-o C-e}.
|
||||
|
||||
You can also use the mouse to change the outline state:
|
||||
@kbd{S-mouse-2} hides the text content of a section in the same
|
||||
way as@kbd{C-c C-o C-c}; @kbd{mouse-2} on a specially
|
||||
displayed heading shows the text content of the section in the same
|
||||
way as @kbd{C-c C-o C-e}; @kbd{mouse-1} on a specially
|
||||
displayed start-tag toggles the display of subheadings on and
|
||||
off.
|
||||
|
||||
The outline state for each section is stored with the first
|
||||
character of the section (as a text property). Every command that
|
||||
changes the outline state of any section updates the display of the
|
||||
buffer so that each section is displayed correctly according to its
|
||||
outline state. If the section structure is subsequently changed, then
|
||||
it is possible for the display to no longer correctly reflect the
|
||||
stored outline state. @kbd{C-c C-o C-r} can be used to refresh
|
||||
the display so it is correct again.
|
||||
|
||||
@node Locating a schema
|
||||
@chapter Locating a schema
|
||||
|
||||
nXML mode has a configurable set of rules to locate a schema for
|
||||
the file being edited. The rules are contained in one or more schema
|
||||
locating files, which are XML documents.
|
||||
|
||||
The variable @samp{rng-schema-locating-files} specifies
|
||||
the list of the file-names of schema locating files that nXML mode
|
||||
should use. The order of the list is significant: when file
|
||||
@var{x} occurs in the list before file @var{y} then rules
|
||||
from file @var{x} have precedence over rules from file
|
||||
@var{y}. A filename specified in
|
||||
@samp{rng-schema-locating-files} may be relative. If so, it will
|
||||
be resolved relative to the document for which a schema is being
|
||||
located. It is not an error if relative file-names in
|
||||
@samp{rng-schema-locating-files} do not not exist. You can use
|
||||
@kbd{M-x customize-variable @key{RET} rng-schema-locating-files
|
||||
@key{RET}} to customize the list of schema locating
|
||||
files.
|
||||
|
||||
By default, @samp{rng-schema-locating-files} list has two
|
||||
members: @samp{schemas.xml}, and
|
||||
@samp{@var{dist-dir}/schema/schemas.xml} where
|
||||
@samp{@var{dist-dir}} is the directory containing the nXML
|
||||
distribution. The first member will cause nXML mode to use a file
|
||||
@samp{schemas.xml} in the same directory as the document being
|
||||
edited if such a file exist. The second member contains rules for the
|
||||
schemas that are included with the nXML distribution.
|
||||
|
||||
@menu
|
||||
* Commands for locating a schema::
|
||||
* Schema locating files::
|
||||
@end menu
|
||||
|
||||
@node Commands for locating a schema
|
||||
@section Commands for locating a schema
|
||||
|
||||
The command @kbd{C-c C-s C-w} will tell you what schema
|
||||
is currently being used.
|
||||
|
||||
The rules for locating a schema are applied automatically when
|
||||
you visit a file in nXML mode. However, if you have just created a new
|
||||
file and the schema cannot be inferred from the file-name, then this
|
||||
will not locate the right schema. In this case, you should insert the
|
||||
start-tag of the root element and then use the command @kbd{C-c
|
||||
C-a}, which reapplies the rules based on the current content of
|
||||
the document. It is usually not necessary to insert the complete
|
||||
start-tag; often just @samp{<@var{name}} is
|
||||
enough.
|
||||
|
||||
If you want to use a schema that has not yet been added to the
|
||||
schema locating files, you can use the command @kbd{C-c C-s C-f}
|
||||
to manually select the file contaiing the schema for the document in
|
||||
current buffer. Emacs will read the file-name of the schema from the
|
||||
minibuffer. After reading the file-name, Emacs will ask whether you
|
||||
wish to add a rule to a schema locating file that persistently
|
||||
associates the document with the selected schema. The rule will be
|
||||
added to the first file in the list specified
|
||||
@samp{rng-schema-locating-files}; it will create the file if
|
||||
necessary, but will not create a directory. If the variable
|
||||
@samp{rng-schema-locating-files} has not been customized, this
|
||||
means that the rule will be added to the file @samp{schemas.xml}
|
||||
in the same directory as the document being edited.
|
||||
|
||||
The command @kbd{C-c C-s C-t} allows you to select a schema by
|
||||
specifying an identifier for the type of the document. The schema
|
||||
locating files determine the available type identifiers and what
|
||||
schema is used for each type identifier. This is useful when it is
|
||||
impossible to infer the right schema from either the file-name or the
|
||||
content of the document, even though the schema is already in the
|
||||
schema locating file. A situation in which this can occur is when
|
||||
there are multiple variants of a schema where all valid documents have
|
||||
the same document element. For example, XHTML has Strict and
|
||||
Transitional variants. In a situation like this, a schema locating file
|
||||
can define a type identifier for each variant. As with @kbd{C-c
|
||||
C-s C-f}, Emacs will ask whether you wish to add a rule to a schema
|
||||
locating file that persistently associates the document with the
|
||||
specified type identifier.
|
||||
|
||||
The command @kbd{C-c C-s C-l} adds a rule to a schema
|
||||
locating file that persistently associates the document with
|
||||
the schema that is currently being used.
|
||||
|
||||
@node Schema locating files
|
||||
@section Schema locating files
|
||||
|
||||
Each schema locating file specifies a list of rules. The rules
|
||||
from each file are appended in order. To locate a schema each rule is
|
||||
applied in turn until a rule matches. The first matching rule is then
|
||||
used to determine the schema.
|
||||
|
||||
Schema locating files are designed to be useful for other
|
||||
applications that need to locate a schema for a document. In fact,
|
||||
there is nothing specific to locating schemas in the design; it could
|
||||
equally well be used for locating a stylesheet.
|
||||
|
||||
@menu
|
||||
* Schema locating file syntax basics::
|
||||
* Using the document's URI to locate a schema::
|
||||
* Using the document element to locate a schema::
|
||||
* Using type identifiers in schema locating files::
|
||||
* Using multiple schema locating files::
|
||||
@end menu
|
||||
|
||||
@node Schema locating file syntax basics
|
||||
@subsection Schema locating file syntax basics
|
||||
|
||||
There is a schema for schema locating files in the file
|
||||
@samp{locate.rnc} in the schema directory. Schema locating
|
||||
files must be valid with respect to this schema.
|
||||
|
||||
The document element of a schema locating file must be
|
||||
@samp{locatingRules} and the namespace URI must be
|
||||
@samp{http://thaiopensource.com/ns/locating-rules/1.0}. The
|
||||
children of the document element specify rules. The order of the
|
||||
children is the same as the order of the rules. Here's a complete
|
||||
example of a schema locating file:
|
||||
|
||||
@example
|
||||
<?xml version="1.0"?>
|
||||
<locatingRules xmlns="http://thaiopensource.com/ns/locating-rules/1.0">
|
||||
<namespace ns="http://www.w3.org/1999/xhtml" uri="xhtml.rnc"/>
|
||||
<documentElement localName="book" uri="docbook.rnc"/>
|
||||
</locatingRules>
|
||||
@end example
|
||||
|
||||
@noindent
|
||||
This says to use the schema @samp{xhtml.rnc} for a document with
|
||||
namespace @samp{http://www.w3.org/1999/xhtml}, and to use the
|
||||
schema @samp{docbook.rnc} for a document whose local name is
|
||||
@samp{book}. If the document element had both a namespace URI
|
||||
of @samp{http://www.w3.org/1999/xhtml} and a local name of
|
||||
@samp{book}, then the matching rule that comes first will be
|
||||
used and so the schema @samp{xhtml.rnc} would be used. There is
|
||||
no precedence between different types of rule; the first matching rule
|
||||
of any type is used.
|
||||
|
||||
As usual with XML-related technologies, resources are identified
|
||||
by URIs. The @samp{uri} attribute identifies the schema by
|
||||
specifying the URI. The URI may be relative. If so, it is resolved
|
||||
relative to the URI of the schema locating file that contains
|
||||
attribute. This means that if the value of @samp{uri} attribute
|
||||
does not contain a @samp{/}, then it will refer to a filename in
|
||||
the same directory as the schema locating file.
|
||||
|
||||
@node Using the document's URI to locate a schema
|
||||
@subsection Using the document's URI to locate a schema
|
||||
|
||||
A @samp{uri} rule locates a schema based on the URI of the
|
||||
document. The @samp{uri} attribute specifies the URI of the
|
||||
schema. The @samp{resource} attribute can be used to specify
|
||||
the schema for a particular document. For example,
|
||||
|
||||
@example
|
||||
<uri resource="spec.xml" uri="docbook.rnc"/>
|
||||
@end example
|
||||
|
||||
@noindent
|
||||
specifies that that the schema for @samp{spec.xml} is
|
||||
@samp{docbook.rnc}.
|
||||
|
||||
The @samp{pattern} attribute can be used instead of the
|
||||
@samp{resource} attribute to specify the schema for any document
|
||||
whose URI matches a pattern. The pattern has the same syntax as an
|
||||
absolute or relative URI except that the path component of the URI can
|
||||
use a @samp{*} character to stand for zero or more characters
|
||||
within a path segment (i.e. any character other @samp{/}).
|
||||
Typically, the URI pattern looks like a relative URI, but, whereas a
|
||||
relative URI in the @samp{resource} attribute is resolved into a
|
||||
particular absolute URI using the base URI of the schema locating
|
||||
file, a relative URI pattern matches if it matches some number of
|
||||
complete path segments of the document's URI ending with the last path
|
||||
segment of the document's URI. For example,
|
||||
|
||||
@example
|
||||
<uri pattern="*.xsl" uri="xslt.rnc"/>
|
||||
@end example
|
||||
|
||||
@noindent
|
||||
specifies that the schema for documents with a URI whose path ends
|
||||
with @samp{.xsl} is @samp{xslt.rnc}.
|
||||
|
||||
A @samp{transformURI} rule locates a schema by
|
||||
transforming the URI of the document. The @samp{fromPattern}
|
||||
attribute specifies a URI pattern with the same meaning as the
|
||||
@samp{pattern} attribute of the @samp{uri} element. The
|
||||
@samp{toPattern} attribute is a URI pattern that is used to
|
||||
generate the URI of the schema. Each @samp{*} in the
|
||||
@samp{toPattern} is replaced by the string that matched the
|
||||
corresponding @samp{*} in the @samp{fromPattern}. The
|
||||
resulting string is appended to the initial part of the document's URI
|
||||
that was not explicitly matched by the @samp{fromPattern}. The
|
||||
rule matches only if the transformed URI identifies an existing
|
||||
resource. For example, the rule
|
||||
|
||||
@example
|
||||
<transformURI fromPattern="*.xml" toPattern="*.rnc"/>
|
||||
@end example
|
||||
|
||||
@noindent
|
||||
would transform the URI @samp{file:///home/jjc/docs/spec.xml}
|
||||
into the URI @samp{file:///home/jjc/docs/spec.rnc}. Thus, this
|
||||
rule specifies that to locate a schema for a document
|
||||
@samp{@var{foo}.xml}, Emacs should test whether a file
|
||||
@samp{@var{foo}.rnc} exists in the same directory as
|
||||
@samp{@var{foo}.xml}, and, if so, should use it as the
|
||||
schema.
|
||||
|
||||
@node Using the document element to locate a schema
|
||||
@subsection Using the document element to locate a schema
|
||||
|
||||
A @samp{documentElement} rule locates a schema based on
|
||||
the local name and prefix of the document element. For example, a rule
|
||||
|
||||
@example
|
||||
<documentElement prefix="xsl" localName="stylesheet" uri="xslt.rnc"/>
|
||||
@end example
|
||||
|
||||
@noindent
|
||||
specifies that when the name of the document element is
|
||||
@samp{xsl:stylesheet}, then @samp{xslt.rnc} should be used
|
||||
as the schema. Either the @samp{prefix} or
|
||||
@samp{localName} attribute may be omitted to allow any prefix or
|
||||
local name.
|
||||
|
||||
A @samp{namespace} rule locates a schema based on the
|
||||
namespace URI of the document element. For example, a rule
|
||||
|
||||
@example
|
||||
<namespace ns="http://www.w3.org/1999/XSL/Transform" uri="xslt.rnc"/>
|
||||
@end example
|
||||
|
||||
@noindent
|
||||
specifies that when the namespace URI of the document is
|
||||
@samp{http://www.w3.org/1999/XSL/Transform}, then
|
||||
@samp{xslt.rnc} should be used as the schema.
|
||||
|
||||
@node Using type identifiers in schema locating files
|
||||
@subsection Using type identifiers in schema locating files
|
||||
|
||||
Type identifiers allow a level of indirection in locating the
|
||||
schema for a document. Instead of associating the document directly
|
||||
with a schema URI, the document is associated with a type identifier,
|
||||
which is in turn associated with a schema URI. nXML mode does not
|
||||
constrain the format of type identifiers. They can be simply strings
|
||||
without any formal structure or they can be public identifiers or
|
||||
URIs. Note that these type identifiers have nothing to do with the
|
||||
DOCTYPE declaration. When comparing type identifiers, whitespace is
|
||||
normalized in the same way as with the @samp{xsd:token}
|
||||
datatype: leading and trailing whitespace is stripped; other sequences
|
||||
of whitespace are normalized to a single space character.
|
||||
|
||||
Each of the rules described in previous sections that uses a
|
||||
@samp{uri} attribute to specify a schema, can instead use a
|
||||
@samp{typeId} attribute to specify a type identifier. The type
|
||||
identifier can be associated with a URI using a @samp{typeId}
|
||||
element. For example,
|
||||
|
||||
@example
|
||||
<locatingRules xmlns="http://thaiopensource.com/ns/locating-rules/1.0">
|
||||
<namespace ns="http://www.w3.org/1999/xhtml" typeId="XHTML"/>
|
||||
<typeId id="XHTML" typeId="XHTML Strict"/>
|
||||
<typeId id="XHTML Strict" uri="xhtml-strict.rnc"/>
|
||||
<typeId id="XHTML Transitional" uri="xhtml-transitional.rnc"/>
|
||||
</locatingRules>
|
||||
@end example
|
||||
|
||||
@noindent
|
||||
declares three type identifiers @samp{XHTML} (representing the
|
||||
default variant of XHTML to be used), @samp{XHTML Strict} and
|
||||
@samp{XHTML Transitional}. Such a schema locating file would
|
||||
use @samp{xhtml-strict.rnc} for a document whose namespace is
|
||||
@samp{http://www.w3.org/1999/xhtml}. But it is considerably
|
||||
more flexible than a schema locating file that simply specified
|
||||
|
||||
@example
|
||||
<namespace ns="http://www.w3.org/1999/xhtml" uri="xhtml-strict.rnc"/>
|
||||
@end example
|
||||
|
||||
@noindent
|
||||
A user can easily use @kbd{C-c C-s C-t} to select between XHTML
|
||||
Strict and XHTML Transitional. Also, a user can easily add a catalog
|
||||
|
||||
@example
|
||||
<locatingRules xmlns="http://thaiopensource.com/ns/locating-rules/1.0">
|
||||
<typeId id="XHTML" typeId="XHTML Transitional"/>
|
||||
</locatingRules>
|
||||
@end example
|
||||
|
||||
@noindent
|
||||
that makes the default variant of XHTML be XHTML Transitional.
|
||||
|
||||
@node Using multiple schema locating files
|
||||
@subsection Using multiple schema locating files
|
||||
|
||||
The @samp{include} element includes rules from another
|
||||
schema locating file. The behavior is exactly as if the rules from
|
||||
that file were included in place of the @samp{include} element.
|
||||
Relative URIs are resolved into absolute URIs before the inclusion is
|
||||
performed. For example,
|
||||
|
||||
@example
|
||||
<include rules="../rules.xml"/>
|
||||
@end example
|
||||
|
||||
@noindent
|
||||
includes the rules from @samp{rules.xml}.
|
||||
|
||||
The process of locating a schema takes as input a list of schema
|
||||
locating files. The rules in all these files and in the files they
|
||||
include are resolved into a single list of rules, which are applied
|
||||
strictly in order. Sometimes this order is not what is needed.
|
||||
For example, suppose you have two schema locating files, a private
|
||||
file
|
||||
|
||||
@example
|
||||
<locatingRules xmlns="http://thaiopensource.com/ns/locating-rules/1.0">
|
||||
<namespace ns="http://www.w3.org/1999/xhtml" uri="xhtml.rnc"/>
|
||||
</locatingRules>
|
||||
@end example
|
||||
|
||||
@noindent
|
||||
followed by a public file
|
||||
|
||||
@example
|
||||
<locatingRules xmlns="http://thaiopensource.com/ns/locating-rules/1.0">
|
||||
<transformURI pathSuffix=".xml" replacePathSuffix=".rnc"/>
|
||||
<namespace ns="http://www.w3.org/1999/XSL/Transform" typeId="XSLT"/>
|
||||
</locatingRules>
|
||||
@end example
|
||||
|
||||
@noindent
|
||||
The effect of these two files is that the XHTML @samp{namespace}
|
||||
rule takes precedence over the @samp{transformURI} rule, which
|
||||
is almost certainly not what is needed. This can be solved by adding
|
||||
an @samp{applyFollowingRules} to the private file.
|
||||
|
||||
@example
|
||||
<locatingRules xmlns="http://thaiopensource.com/ns/locating-rules/1.0">
|
||||
<applyFollowingRules ruleType="transformURI"/>
|
||||
<namespace ns="http://www.w3.org/1999/xhtml" uri="xhtml.rnc"/>
|
||||
</locatingRules>
|
||||
@end example
|
||||
|
||||
@node DTDs
|
||||
@chapter DTDs
|
||||
|
||||
nxml-mode is designed to support the creation of standalone XML
|
||||
documents that do not depend on a DTD. Although it is common practice
|
||||
to insert a DOCTYPE declaration referencing an external DTD, this has
|
||||
undesirable side-effects. It means that the document is no longer
|
||||
self-contained. It also means that different XML parsers may interpret
|
||||
the document in different ways, since the XML Recommendation does not
|
||||
require XML parsers to read the DTD. With DTDs, it was impractical to
|
||||
get validation without using an external DTD or reference to an
|
||||
parameter entity. With RELAX NG and other schema languages, you can
|
||||
simulataneously get the benefits of validation and standalone XML
|
||||
documents. Therefore, I recommend that you do not reference an
|
||||
external DOCTYPE in your XML documents.
|
||||
|
||||
One problem is entities for characters. Typically, as well as
|
||||
providing validation, DTDs also provide a set of character entities
|
||||
for documents to use. Schemas cannot provide this functionality,
|
||||
because schema validation happens after XML parsing. The recommended
|
||||
solution is to either use the Unicode characters directly, or, if this
|
||||
is impractical, use character references. nXML mode supports this by
|
||||
providing commands for entering characters and character references
|
||||
using the Unicode names, and can display the glyph corresponding to a
|
||||
character reference.
|
||||
|
||||
@node Limitations
|
||||
@chapter Limitations
|
||||
|
||||
nXML mode has some limitations:
|
||||
|
||||
@itemize @bullet
|
||||
@item
|
||||
DTD support is limited. Internal parsed general entities declared
|
||||
in the internal subset are supported provided they do not contain
|
||||
elements. Other usage of DTDs is ignored.
|
||||
@item
|
||||
The restrictions on RELAX NG schemas in section 7 of the RELAX NG
|
||||
specification are not enforced.
|
||||
@item
|
||||
Unicode support has problems. This stems mostly from the fact that
|
||||
the XML (and RELAX NG) character model is based squarely on Unicode,
|
||||
whereas the Emacs character model is not. Emacs 22 is slated to have
|
||||
full Unicode support, which should improve the situation here.
|
||||
@end itemize
|
||||
|
||||
@bye
|
||||
|
||||
@ignore
|
||||
arch-tag: 3b6e8ac2-ae8d-4f38-bd43-ce9f80be04d6
|
||||
@end ignore
|
|
@ -350,7 +350,6 @@ The text used to begin each remember item.
|
|||
@subheading Insinuation
|
||||
|
||||
@lisp
|
||||
(require 'remember-diary)
|
||||
(add-to-list 'remember-handler-functions 'remember-diary-extract-entries)
|
||||
@end lisp
|
||||
|
||||
|
@ -358,6 +357,7 @@ The text used to begin each remember item.
|
|||
|
||||
@defopt remember-diary-file
|
||||
File for extracted diary entries.
|
||||
If this is nil, then @code{diary-file} will be used instead."
|
||||
@end defopt
|
||||
|
||||
@node Mailbox, Org, Diary, Backends
|
||||
|
|
|
@ -327,9 +327,10 @@ host, followed by a newline.
|
|||
@value{tramp} now waits for the shell prompt or for a message that the login
|
||||
failed.
|
||||
|
||||
If @value{tramp} sees neither of them after a certain period of time (a minute,
|
||||
say), then it issues an error message saying that it couldn't find the
|
||||
remote shell prompt and shows you what the remote host has sent.
|
||||
If @value{tramp} sees neither of them after a certain period of time
|
||||
(a minute, say), then it issues an error message saying that it
|
||||
couldn't find the remote shell prompt and shows you what the remote
|
||||
host has sent.
|
||||
|
||||
If @value{tramp} sees a @samp{login failed} message, it tells you so,
|
||||
aborts the login attempt and allows you to try again.
|
||||
|
@ -1602,6 +1603,19 @@ the connections, like introducing a @option{Host} section in
|
|||
@file{~/.ssh/config} (@pxref{Frequently Asked Questions}) or applying
|
||||
multiple hops (@pxref{Multi-hops}).
|
||||
|
||||
When @value{tramp} detects a changed operating system version on a
|
||||
remote host (via the command @command{uname -sr}), it flushes all
|
||||
connection related information for this host, quits the execution, and
|
||||
displays a message like this:
|
||||
|
||||
@example
|
||||
Quit: "Connection reset, because remote host changed from `Linux
|
||||
2.6.22-13-generic' to `Linux 2.6.22-14-generic'"
|
||||
@end example
|
||||
|
||||
@noindent
|
||||
You can simply open the remote file again in such a case.
|
||||
|
||||
|
||||
@node Remote Programs
|
||||
@section How @value{tramp} finds and uses programs on the remote machine.
|
||||
|
@ -2253,27 +2267,49 @@ filename completion on the remote host. This works pretty much like
|
|||
for files on the local host, with the exception that minibuffer
|
||||
killing via a double-slash works only on the filename part, except
|
||||
that filename part starts with @file{//}.
|
||||
@ifset emacs
|
||||
A triple-slash stands for the default behaviour.
|
||||
@end ifset
|
||||
@ifinfo
|
||||
@xref{Minibuffer File, , , @value{emacsdir}}.
|
||||
@end ifinfo
|
||||
|
||||
@noindent
|
||||
Example:
|
||||
|
||||
@example
|
||||
@ifset emacs
|
||||
As example, @kbd{@trampfn{telnet, , melancholia, /usr/local/bin//etc}
|
||||
@key{TAB}} would result in
|
||||
@file{@trampfn{telnet, , melancholia, /etc}}, whereas
|
||||
@kbd{@trampfn{telnet, , melancholia, //etc} @key{TAB}} reduces the
|
||||
minibuffer contents to @file{/etc}. A triple-slash stands for the
|
||||
default behaviour,
|
||||
i.e. @kbd{@trampfn{telnet, , melancholia, /usr/local/bin///etc}
|
||||
@key{TAB}} expands directly to @file{/etc}.
|
||||
@kbd{C-x C-f @trampfn{telnet, , melancholia, /usr/local/bin//etc} @key{TAB}}
|
||||
@print{} @trampfn{telnet, , melancholia, /etc}
|
||||
|
||||
@kbd{C-x C-f @trampfn{telnet, , melancholia, //etc} @key{TAB}}
|
||||
@print{} /etc
|
||||
|
||||
@kbd{C-x C-f @trampfn{telnet, , melancholia, /usr/local/bin///etc} @key{TAB}}
|
||||
@print{} /etc
|
||||
@end ifset
|
||||
|
||||
@ifset xemacs
|
||||
As example, @kbd{@trampfn{telnet, , melancholia, /usr/local/bin//}}
|
||||
would result in @file{@trampfn{telnet, , melancholia, /}}, whereas
|
||||
@kbd{@trampfn{telnet, , melancholia, //}} expands the minibuffer
|
||||
contents to @file{/}.
|
||||
@kbd{C-x C-f @trampfn{telnet, , melancholia, /usr/local/bin//}}
|
||||
@print{} @trampfn{telnet, , melancholia, /}
|
||||
|
||||
@kbd{C-x C-f @trampfn{telnet, , melancholia, //}}
|
||||
@print{} /
|
||||
@end ifset
|
||||
@end example
|
||||
|
||||
A remote directory might have changed its contents out of
|
||||
@value{emacsname} control, for example by creation or deletion of
|
||||
files by other processes. Therefore, during filename completion the
|
||||
remote directory contents is reread regularly in order to detect such
|
||||
changes, which would be invisible otherwise (@pxref{Connection caching}).
|
||||
|
||||
@defopt tramp-completion-reread-directory-timeout
|
||||
This variable defines the number of seconds since last remote command
|
||||
before rereading a directory contents. A value of 0 would require an
|
||||
immediate reread during filename completion, @code{nil} means to use
|
||||
always cached values for the directory contents.
|
||||
@end defopt
|
||||
|
||||
|
||||
@node Remote processes
|
||||
|
|
|
@ -1,3 +1,40 @@
|
|||
2007-11-30 Kentaro Ohkouchi <nanasess@fsm.ne.jp>
|
||||
|
||||
* images/icons/macemacs_16.png, images/icons/macemacs_24.png:
|
||||
* images/icons/macemacs_32.png, images/icons/macemacs_48.png:
|
||||
* images/icons/macemacs_256.png, images/icons/macemacs_512.png:
|
||||
New files.
|
||||
|
||||
2007-11-28 Glenn Morris <rgm@gnu.org>
|
||||
|
||||
* nxml/: New directory, moved here from lisp/nxml/char-name/unicode.
|
||||
* nxml/README: New file.
|
||||
|
||||
2007-11-24 Glenn Morris <rgm@gnu.org>
|
||||
|
||||
* images/gnus/mail_send.xpm: Rename to mail-send.xpm.
|
||||
|
||||
2007-11-23 Mark A. Hershberger <mah@everybody.org>
|
||||
|
||||
* NXML-NEWS: New File.
|
||||
|
||||
* schema: Initial merge of nxml.
|
||||
|
||||
2007-11-22 Francesco Potort,Al(B <pot@gnu.org>
|
||||
|
||||
* NEWS: etags: the --members option is now the default.
|
||||
|
||||
2007-11-22 Glenn Morris <rgm@gnu.org>
|
||||
|
||||
* images/smilies/grayscale/README, images/smilies/medium/README:
|
||||
New files.
|
||||
|
||||
2007-11-12 Vinicius Jose Latorre <viniciusjl@ig.com.br>
|
||||
|
||||
* compilation.txt: Add new entries: compilation-perl--Pod::Checker,
|
||||
compilation-perl--Test, compilation-perl--Test::Harness and
|
||||
compilation-weblint.
|
||||
|
||||
2007-11-01 Dan Nicolaescu <dann@ics.uci.edu>
|
||||
|
||||
* MACHINES: Remove Sun windows info.
|
||||
|
@ -11,6 +48,12 @@
|
|||
* refcards/gnus-refcard.tex: Restore Feb 2007 copyright
|
||||
clarifications lost in update to Gnus trunk.
|
||||
|
||||
2007-10-28 Adam Sj,Ax(Bgren <asjo@koldfront.dk>
|
||||
|
||||
* images/smilies/grayscale/*.xpm: New larger grayscale smileys.
|
||||
|
||||
* images/smilies/medium/*.xpm: New colorful smileys.
|
||||
|
||||
2007-10-29 Michael Olson <mwolson@gnu.org>
|
||||
|
||||
* ERC-NEWS: Update for recent change.
|
||||
|
|
|
@ -58,7 +58,7 @@ Articles::.
|
|||
|
||||
** International host names (IDNA) can now be decoded inside article bodies
|
||||
using `W i' (`gnus-summary-idna-message'). This requires that GNU Libidn
|
||||
(`http://www.gnu.org/software/libidn/') has been installed.
|
||||
(<http://www.gnu.org/software/libidn/>) has been installed.
|
||||
|
||||
** The non-ASCII group names handling has been much improved. The back
|
||||
ends that fully support non-ASCII group names are now `nntp', `nnml',
|
||||
|
@ -106,7 +106,7 @@ From Newsgroups::.
|
|||
|
||||
** You can replace MIME parts with external bodies. See
|
||||
`gnus-mime-replace-part' and `gnus-article-replace-part'. *Note MIME
|
||||
Commands::, *note Using MIME::.
|
||||
Commands::, *Note Using MIME::.
|
||||
|
||||
** The option `mm-fill-flowed' can be used to disable treatment of
|
||||
format=flowed messages. Also, flowed text is disabled when sending
|
||||
|
@ -146,7 +146,7 @@ Variables.
|
|||
** The option `message-citation-line-format' controls the format of the
|
||||
"Whomever writes:" line. You need to set
|
||||
`message-citation-line-function' to
|
||||
`message-insert-formated-citation-line' as well.
|
||||
`message-insert-formatted-citation-line' as well.
|
||||
|
||||
|
||||
* Changes in back ends
|
||||
|
|
62
etc/NEWS
62
etc/NEWS
|
@ -40,6 +40,8 @@ a GIF library.
|
|||
|
||||
** The `emacstool' utility has been removed.
|
||||
|
||||
** The new configuration option "--with-dbus" enables D-Bus language
|
||||
bindings for Emacs.
|
||||
|
||||
* Changes in Emacs 23.1
|
||||
|
||||
|
@ -53,6 +55,7 @@ testing for the `multi-tty' feature.
|
|||
OS-X-style icons (an application icon and a relevant document icon)
|
||||
were contributed by Kentaro Ohkouchi.
|
||||
Source files for these icons can be found in Emacs.app/Contents/Resources.
|
||||
PNG versions are available as etc/images/icons/macemacs_*.png.
|
||||
|
||||
** Built-in functions (subr) can now have an interactive specification
|
||||
that is not a prompt string. If the `intspec' parameter of a `DEFUN'
|
||||
|
@ -120,6 +123,11 @@ following arguments.
|
|||
|
||||
* Incompatible Editing Changes in Emacs 23.1
|
||||
|
||||
+++
|
||||
** In Dired-x, all command guesses for ! are now added to the default
|
||||
list accessible by M-n instead of pushing all guesses temporarily into
|
||||
the history list.
|
||||
|
||||
|
||||
* Editing Changes in Emacs 23.1
|
||||
|
||||
|
@ -152,6 +160,17 @@ strings on the kill ring.
|
|||
|
||||
** Minibuffer changes:
|
||||
|
||||
*** In C-x d, if you type M-n you get the visited file name of the
|
||||
current buffer.
|
||||
|
||||
*** In Dired, a list of commands for ! extracted from mailcap according to
|
||||
file extensions are added to the default list accessible by M-n.
|
||||
|
||||
*** A list of regexp default values is available via M-n for `occur',
|
||||
`keep-lines', `flush-lines' and `how-many'. This list includes the active
|
||||
region in transient-mark-mode, the word under the cursor, the last isearch
|
||||
regexp, the last isearch string and the last replacement regexp.
|
||||
|
||||
*** isearch started in the minibuffer searches in the minibuffer history.
|
||||
Reverse isearch commands (C-r, C-M-r) search in previous minibuffer
|
||||
history elements, and forward isearch commands (C-s, C-M-s) search in
|
||||
|
@ -163,12 +182,17 @@ history element containing the search string becomes the current.
|
|||
|
||||
* New Modes and Packages in Emacs 23.1
|
||||
|
||||
** FIXME add details of new packages imported from lisp/gnus.
|
||||
|
||||
** The package doc-view.el has been added. It supports viewing of PDF,
|
||||
PostScript and DVI documents inside an Emacs buffer by converting the
|
||||
document to a set of PNG images first. One can also search for a
|
||||
regular expression in the document. The commentary of the file explains
|
||||
its usage.
|
||||
|
||||
** The nXML package has been added.
|
||||
[FIXME someone who uses this, please write a brief description.]
|
||||
|
||||
** A new game called `bubbles' has been added.
|
||||
|
||||
** minibuffer-indicate-depth-mode shows the minibuffer depth in the prompt.
|
||||
|
@ -178,6 +202,10 @@ mode for quickly jotting down things to remember. Included with
|
|||
remember.el is a backend that can save notes to a Diary file. Please
|
||||
consult the Remember Manual for usage details.
|
||||
|
||||
** D-Bus language bindings for Elisp are provided by the package
|
||||
dbus.el and by extensions to the C modules of Emacs. D-Bus is an
|
||||
inter-process communication mechanism for applications residing on the
|
||||
same host, based on messages. See the manual for further details.
|
||||
|
||||
* Changes in Specialized Modes and Packages in Emacs 23.1
|
||||
|
||||
|
@ -201,10 +229,10 @@ than `with-output-to-temp-buffer' with `print-help-return-message'.
|
|||
*** New option `help-window-select' permits to customize whether help
|
||||
window shall be automatically selected when invoking help.
|
||||
*** New variable `help-window-point-marker' permits to specify new
|
||||
position of point in help window (for example in `view-lossage').
|
||||
position of point in help window (for example in `view-lossage').
|
||||
|
||||
** view-remove-frame-by-deleting is now by default t
|
||||
since users found iconification of view-mode frames distracting.
|
||||
since users found iconification of view-mode frames distracting.
|
||||
|
||||
** isearch can now search through multiple ChangeLog files.
|
||||
When running isearch in a ChangeLog file, if the search fails,
|
||||
|
@ -213,11 +241,6 @@ if there is one (e.g. go from ChangeLog to ChangeLog.12).
|
|||
|
||||
This is enabled if isearch-buffers-multi is non-nil.
|
||||
|
||||
+++
|
||||
** In Dired-x, all command guesses for ! are now added to the default
|
||||
list accessible by M-n instead of pushing all guesses temporarily into
|
||||
the history list.
|
||||
|
||||
** smerge-refine highlights word-level details of changes in conflict.
|
||||
It's used automatically as you move through conflicts, see smerge-auto-refine.
|
||||
|
||||
|
@ -242,6 +265,12 @@ with the face `eldoc-highlight-function-argument'.
|
|||
** defcustom accepts new keyword arguments, `:safe' and `:risky', which
|
||||
set a variable's `safe-local-variable' and `risky-local-variable' property.
|
||||
|
||||
** Etags changes.
|
||||
*** The --members option is now the default.
|
||||
|
||||
Use --no-members if you want the old default behaviour of not tagging
|
||||
struct members in C, members variables in C++ and variables in PHP.
|
||||
|
||||
** VC
|
||||
*** Clicking on the VC mode-line entry now pops the VC menu.
|
||||
|
||||
|
@ -254,6 +283,11 @@ version-control systems such as Subversion, GNU Arch, Mercurial, and
|
|||
Bzr. VC will now pass a multiple-file commit to these systems
|
||||
as a single changeset.
|
||||
|
||||
*** In VC Annotate mode, you can type V to toggle the annotation visibility.
|
||||
|
||||
** log-edit now has a command bound to C-c C-d to show the diff for
|
||||
the files involved.
|
||||
|
||||
** sgml-electric-tag-pair-mode lets you simultaneously edit matched tag pairs.
|
||||
|
||||
** The appearance of superscript and subscript in TeX is more customizable.
|
||||
|
@ -369,6 +403,12 @@ because they clash with commands provided by dirtrack.el. Use
|
|||
|
||||
* Lisp Changes in Emacs 23.1
|
||||
|
||||
** `beginning-of-defun-function' now takes one argument, the count
|
||||
given to `beginning-of-defun'.
|
||||
|
||||
** The variable `inhibit-changing-match-data', if non-nil, prevents the
|
||||
search and match primitives from changing the match data.
|
||||
|
||||
+++
|
||||
** New function `match-substitute-replacement' returns the result of
|
||||
`replace-match' without actually using it in the buffer.
|
||||
|
@ -391,6 +431,11 @@ applies before function-key-map. Also it is terminal-local contrary to
|
|||
key-translation-map. Terminal-specific key-sequences are generally added to
|
||||
this map rather than to function-key-map now.
|
||||
|
||||
** The new macro `declare-function' suppresses compiler warnings about
|
||||
undefined functions. The new `check-declare' package verifies that such
|
||||
statements are accurate (i.e. the functions are actually defined in
|
||||
the specified files).
|
||||
|
||||
** The new function `read-color' reads a color name using the minibuffer.
|
||||
|
||||
** Changes related to multiple tty support.
|
||||
|
@ -486,6 +531,9 @@ but obeys file handlers. The file handler is chosen based on
|
|||
and `process-file-shell-command' are also new; they call internally
|
||||
`start-file-process' and `process-file', respectively.
|
||||
|
||||
** The new function `process-lines' executes an external program and
|
||||
returns its output as a list of lines.
|
||||
|
||||
+++
|
||||
** `file-remote-p' has new optional parameters IDENTIFICATION and CONNECTED.
|
||||
IDENTIFICATION specifies which part of the remote identifier has to be
|
||||
|
|
|
@ -40,6 +40,8 @@ below. Emacs tries to warn you about these through `bad-packages-alist'.
|
|||
|
||||
** Emacs is now licensed under the GNU GPL version 3 (or later).
|
||||
|
||||
** Support for GNU/kFreeBSD (GNU userland and FreeBSD kernel) was added.
|
||||
|
||||
* Changes in Emacs 22.2
|
||||
|
||||
** In Image mode, whenever the displayed image is wider and/or higher
|
||||
|
@ -3136,11 +3138,6 @@ be used (only once) in place of a file name on the command line. Etags
|
|||
reads from standard input and marks the produced tags as belonging to
|
||||
the file FILE.
|
||||
|
||||
*** The --members option is now the default.
|
||||
|
||||
Use --no-members if you want the old default behaviour of not tagging
|
||||
struct members in C, members variables in C++ and variables in PHP.
|
||||
|
||||
** Ctags changes.
|
||||
|
||||
*** Ctags now allows duplicate tags
|
||||
|
|
199
etc/NXML-NEWS
Normal file
199
etc/NXML-NEWS
Normal file
|
@ -0,0 +1,199 @@
|
|||
20041004
|
||||
--------
|
||||
|
||||
Support for outlining has been added. See the manual for more details.
|
||||
|
||||
C-u C-c C-n goes to the first error.
|
||||
|
||||
20040910
|
||||
--------
|
||||
|
||||
C-c RET splits the current element as in PSGML.
|
||||
|
||||
20040908
|
||||
--------
|
||||
|
||||
Indentation has been rewritten. Indentation of attribute names and
|
||||
values should work better. The default value of
|
||||
`nxml-attribute-indent' has been changed to 4.
|
||||
|
||||
Syntax highlighting with a dark background should now work.
|
||||
|
||||
20040726
|
||||
--------
|
||||
|
||||
The attribute pathSuffix on the uri element in schema locating files
|
||||
has been replaced by a more general pattern attribute. The
|
||||
transformURI element now has required fromPattern and toPattern
|
||||
attributes.
|
||||
|
||||
The schema related bindings have been changed to use C-c C-s as a prefix
|
||||
as follows:
|
||||
|
||||
C-c C-s => C-c C-s C-f (f for file)
|
||||
C-c C-a => C-c C-s C-a
|
||||
C-c C-t => C-c C-s C-t
|
||||
C-c C-l => C-c C-s C-l
|
||||
C-c C-w => C-c C-s C-w
|
||||
|
||||
There's now an XML menu on the menu-bar.
|
||||
|
||||
20031031
|
||||
--------
|
||||
|
||||
C-c C-d "dynamically" chooses a tag to put around the word before
|
||||
point, rather like M-/.
|
||||
|
||||
The mechanism for locating the schema has changed completely. The new
|
||||
mechanism is described in the manual. Any existing customizations of
|
||||
`rng-auto-element-alist' or `rng-auto-file-name-alist' will no longer
|
||||
be effective.
|
||||
|
||||
C-c C-a is now bound to rng-auto-set-schema.
|
||||
|
||||
20031018
|
||||
--------
|
||||
|
||||
Unicode names can be used to insert characters with the new command
|
||||
C-c C-u. Normally, this inserts a character reference. With a prefix
|
||||
arg (i.e. C-u C-c C-u), it inserts the character directly. You can
|
||||
customize `nxml-enabled-unicode-blocks' to control what Unicode blocks
|
||||
are used for completing names.
|
||||
|
||||
Extra information is displayed for character references. The Unicode
|
||||
name is displayed in a tooltip. A glyph for the referenced character
|
||||
is displayed in a distinguished face following the character
|
||||
reference; this can be disabled by customizing
|
||||
`nxml-char-ref-display-glyph-flag'. The command
|
||||
`nxml-toggle-char-ref-extra-display' dynamically toggles the display
|
||||
of extra information for character references for a particular buffer.
|
||||
This can be used if the display of extra information is causing
|
||||
performance problems. nXML mode tries to figure out which glyphs can
|
||||
be displayed. Unfortunately Emacs doesn't provide the primitives
|
||||
necessary to do this properly, so nXML mode has to guess and will
|
||||
sometimes guess wrong. The hook `nxml-glyph-set-hook' can be used to
|
||||
change nXML mode's guess.
|
||||
|
||||
New command C-c C-w says what schema is being used.
|
||||
|
||||
C-c C-s now turns on validation if it is not already on.
|
||||
|
||||
20030928
|
||||
--------
|
||||
|
||||
M-q has been implemented so that it works reasonably with XML. Other
|
||||
paragraph-related commands (M-{, M-}, M-h) have also been implemented.
|
||||
|
||||
New command M-x rng-auto-set-schema to set the schema based on the
|
||||
buffer's current contents and file-name. This is called automatically
|
||||
when rng-validate-mode is first enabled.
|
||||
|
||||
There's now a C-M-d to go with C-M-u. C-M-d moves forward down into
|
||||
the content of an element. C-M-n and C-M-p move to the next or
|
||||
previous element.
|
||||
|
||||
By default, the sexp commands (C-M-f, C-M-b, C-M-k, C-M-SPC) operate
|
||||
on tags rather than elements. To restore the old behaviour,
|
||||
customize nxml-sexp-element-flag.
|
||||
|
||||
The file TUTORIAL has been replaced by nxml-mode.info; this is in info
|
||||
format and can be read using Emacs. The source is maintained in a
|
||||
simple, ad-hoc XML format.
|
||||
|
||||
20030915
|
||||
--------
|
||||
|
||||
XML encodings should now work properly. When saving a buffer,
|
||||
nxml-mode arranges to use the encoding declared in the XML
|
||||
declaration. If there is no encoding declared, then nxml-mode will
|
||||
use utf-8 or utf-16 according to the user options
|
||||
`nxml-prefer-utf-16-to-utf-8-flag' and
|
||||
`nxml-prefer-utf-16-little-to-big-endian-flag'. If the chosen encoding
|
||||
cannot encode all the characters in the buffer, nxml-mode will
|
||||
complain and give the user an opportunity to use an encoding that can.
|
||||
|
||||
A new command C-c C-x inserts an XML declaration.
|
||||
|
||||
The option `nxml-auto-insert-xml-declaration-flag' automatically
|
||||
inserts an XML declaration in new files.
|
||||
|
||||
The `nxml-default-buffer-file-coding-system' option allows a different
|
||||
default buffer-file-coding-system for nXML mode buffers. This affects
|
||||
what XML declaration is inserted.
|
||||
|
||||
Encoding names in XML declarations are now validated by
|
||||
rng-validate-mode.
|
||||
|
||||
RDF/XML schema was updated to version in 05 September 2003 WD.
|
||||
|
||||
20030912
|
||||
--------
|
||||
|
||||
The tutorial has a new section on inserting end-tags.
|
||||
|
||||
By default </ no longer automatically inserts the rest of the end-tag.
|
||||
You can do
|
||||
|
||||
M-x customize-variable RET nxml-slash-auto-complete-flag RET
|
||||
|
||||
and then follow the instructions displayed in the buffer to get the
|
||||
old behaviour.
|
||||
|
||||
Completion after </ will complete the rest of the end-tag. Completion
|
||||
after < will include the end-tag in the possibilities if allowed by
|
||||
the schema.
|
||||
|
||||
You can use C-c C-i instead of > to close the start-tag of an
|
||||
inline-level element. After inserting the >, it will insert the
|
||||
end-tag and leave point before the end-tag. The `i' is supposed to be
|
||||
mnemonic for `inline'. C-c C-b is similar, but for block elements: the
|
||||
start-tag, point and the end-tag will all be on separate lines.
|
||||
|
||||
The binding for inserting an end-tag has changed from C-c / to C-c C-f
|
||||
to comply with Emacs guidelines about what keys major modes should
|
||||
bind. The `f' is supposed to be mnemonic for `finish'.
|
||||
|
||||
Completion always puts point after all the characters it inserts. It
|
||||
doesn't insert a `>' after completing a start-tag name.
|
||||
|
||||
Completion no longer completes CDATA section and comment delimiters.
|
||||
|
||||
The nxml-start-auto-coding command enables auto-detection of a file's
|
||||
encoding as specified in the XML Recommendation for files that use
|
||||
nxml-mode; rng-auto.el calls this.
|
||||
|
||||
20030906
|
||||
--------
|
||||
|
||||
Validation messages applicable to point are displayed automatically.
|
||||
|
||||
Completion can deal with prefixes that haven't yet been declared.
|
||||
|
||||
rng-preferred-prefix-alist variable added.
|
||||
|
||||
Namespace URIs can be completed.
|
||||
|
||||
xmlns and xmlns:* attributes can be completed.
|
||||
|
||||
CDATA section and comment delimiters can be completed.
|
||||
|
||||
Each kind of completion has its own history.
|
||||
|
||||
Completion function moved to nxml-mode; uses a hook to allow
|
||||
schema-sensitive completion. Completion function bound to C-return.
|
||||
Also bound to M-TAB as before, unless
|
||||
nxml-bind-meta-tab-to-complete-flag is nil. When there is a window
|
||||
system, nxml-bind-meta-tab-to-complete-flag is nil by default, This
|
||||
avoid problems with M-TAB, which is not passed through by several
|
||||
window systems/managers.
|
||||
|
||||
TUTORIAL file added.
|
||||
|
||||
NEWS file added.
|
||||
|
||||
Bug fixes.
|
||||
|
||||
20030901
|
||||
--------
|
||||
|
||||
Initial release.
|
|
@ -2222,7 +2222,11 @@ This combination of keys is a command to change keyboard layout. If
|
|||
you proceed to type another non-modifier key before you let go of Alt
|
||||
and Shift, the Alt and Shift act as modifiers in the usual way. A
|
||||
more permanent work around is to change it to another key combination,
|
||||
or disable it in the keyboard control panel.
|
||||
or disable it in the "Regional and Language Options" applet of the
|
||||
Control Panel. (The exact sequence of mouse clicks in the "Regional
|
||||
and Language Options" applet needed to find the key combination that
|
||||
changes the keyboard layout depends on your Windows version; for XP,
|
||||
in the Languages tab, click "Details" and then "Key Settings".)
|
||||
|
||||
** Cygwin build of Emacs hangs after rebasing Cygwin DLLs
|
||||
|
||||
|
|
11
etc/TODO
11
etc/TODO
|
@ -29,10 +29,6 @@ I.e. mouse-set-font should use customize-face.
|
|||
the mouse is put to rest or after a delay or both, so that moving over
|
||||
a window doesn't select it.
|
||||
|
||||
** In C-x d, the default if you type RET should be the directory name,
|
||||
but if you type M-n you should get the visited file name of the
|
||||
current buffer.
|
||||
|
||||
** Distribute a bar cursor of width > 1 evenly between the two glyphs
|
||||
on each side of the bar (what to do at the edges?).
|
||||
|
||||
|
@ -113,6 +109,9 @@ and
|
|||
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\<device>\
|
||||
where <device> is the network device found under the first key.
|
||||
|
||||
** Check for any included packages that define obsolete bug-reporting commands.
|
||||
Change them to use report-emacs-bug.
|
||||
|
||||
* Important features:
|
||||
|
||||
** Provide user-friendly ways to list all available font families,
|
||||
|
@ -322,9 +321,7 @@ typically due to pilot errors and should thus be in debug-ignored-errors.
|
|||
the whole menu bar. In the mean time, it should process other messages.
|
||||
|
||||
** Get some major packages installed: W3 (development version needs
|
||||
significant work), PSGML, nXML [Mark Hershberger is looking at this
|
||||
http://lists.gnu.org/archive/html/emacs-devel/2007-09/msg01699.html],
|
||||
_possibly_ Cedet and ECB.
|
||||
significant work), PSGML, _possibly_ Cedet and ECB.
|
||||
http://lists.gnu.org/archive/html/emacs-devel/2007-05/msg01493.html
|
||||
Check the assignments file for other packages which might go in and
|
||||
have been missed.
|
||||
|
|
|
@ -370,6 +370,36 @@ symbol: gcov-file gcov-bb-file gcov-never-called-line gcov-called-line
|
|||
-: 18:}
|
||||
|
||||
|
||||
* Podchecker error messages, per Pod::Checker
|
||||
|
||||
symbol: compilation-perl--Pod::Checker
|
||||
|
||||
*** ERROR: Spurious text after =cut at line 193 in file foo.pm
|
||||
*** ERROR: =over on line 37 without closing =back at line EOF in file bar.pm
|
||||
*** ERROR: =over on line 1 without closing =back (at head1) at line 3 in file x.pod
|
||||
|
||||
|
||||
* Perl Test module error messages
|
||||
|
||||
symbol: compilation-perl--Test
|
||||
|
||||
# Failed test 1 in foo.t at line 6
|
||||
|
||||
|
||||
* Perl Test::Harness output
|
||||
|
||||
symbol: compilation-perl--Test::Harness
|
||||
|
||||
NOK 1# Test 1 got: "1234" (t/foo.t at line 46)
|
||||
|
||||
|
||||
* Perl HTML::Lint::Error::as_string()
|
||||
|
||||
symbol: compilation-weblint
|
||||
|
||||
index.html (13:1) Unknown element <fdjsk>
|
||||
|
||||
|
||||
* Directory tracking
|
||||
|
||||
Directories are matched via `compilation-directory-matcher'. Files which are
|
||||
|
|
|
@ -35,3 +35,4 @@ but distributed and used by Emacs.
|
|||
toggle-subscription.xpm (GNOME stock/document/stock_task-recurring)
|
||||
kill-group.pbm and kill-group.xpm are converted from close.xpm
|
||||
rot13.pbm and rot13.xpm are converted from lock.xpm
|
||||
mail-send.xpm ?
|
||||
|
|
|
@ -4,3 +4,9 @@ Files: emacs_16.png emacs_24.png emacs_32.png emacs_48.png
|
|||
Author: Andrew Zhilin <andrew_zhilin@yahoo.com>
|
||||
Copyright (C) 2005, 2006, 2007 Free Software Foundation, Inc.
|
||||
License: GNU General Public License version 3 or later (see COPYING)
|
||||
|
||||
Files: macemacs_16.png macemacs_24.png macemacs_32.png macemacs_48.png
|
||||
macemacs_256.png macemacs_512.png
|
||||
Author: Kentaro Ohkouchi <nanasess@fsm.ne.jp>
|
||||
Copyright (C) 2007 Free Software Foundation, Inc.
|
||||
License: GNU General Public License version 3 or later (see COPYING)
|
||||
|
|
BIN
etc/images/icons/macemacs_16.png
Normal file
BIN
etc/images/icons/macemacs_16.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 1.2 KiB |
BIN
etc/images/icons/macemacs_24.png
Normal file
BIN
etc/images/icons/macemacs_24.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 1.8 KiB |
BIN
etc/images/icons/macemacs_256.png
Normal file
BIN
etc/images/icons/macemacs_256.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 57 KiB |
BIN
etc/images/icons/macemacs_32.png
Normal file
BIN
etc/images/icons/macemacs_32.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 2.4 KiB |
BIN
etc/images/icons/macemacs_48.png
Normal file
BIN
etc/images/icons/macemacs_48.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 4.2 KiB |
BIN
etc/images/icons/macemacs_512.png
Normal file
BIN
etc/images/icons/macemacs_512.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 157 KiB |
6
etc/images/smilies/grayscale/README
Normal file
6
etc/images/smilies/grayscale/README
Normal file
|
@ -0,0 +1,6 @@
|
|||
Files: blink.xpm braindamaged.xpm cry.xpm dead.xpm evil.xpm forced.xpm
|
||||
frown.xpm grin.xpm indifferent.xpm reverse-smile.xpm sad.xpm
|
||||
smile.xpm wry.xpm
|
||||
Author: Adam Sjøgren
|
||||
Copyright (C) 2007 Free Software Foundation, Inc.
|
||||
License: GNU General Public License version 3 or later (see COPYING)
|
6
etc/images/smilies/medium/README
Normal file
6
etc/images/smilies/medium/README
Normal file
|
@ -0,0 +1,6 @@
|
|||
Files: blink.xpm braindamaged.xpm cry.xpm dead.xpm evil.xpm forced.xpm
|
||||
frown.xpm grin.xpm indifferent.xpm reverse-smile.xpm sad.xpm
|
||||
smile.xpm wry.xpm
|
||||
Author: Adam Sjøgren
|
||||
Copyright (C) 2007 Free Software Foundation, Inc.
|
||||
License: GNU General Public License version 3 or later (see COPYING)
|
99
etc/nxml/00000-0007F.el
Normal file
99
etc/nxml/00000-0007F.el
Normal file
|
@ -0,0 +1,99 @@
|
|||
(nxml-define-char-name-set 'basic-latin
|
||||
'(("SPACE" #x0020)
|
||||
("EXCLAMATION MARK" #x0021)
|
||||
("QUOTATION MARK" #x0022)
|
||||
("NUMBER SIGN" #x0023)
|
||||
("DOLLAR SIGN" #x0024)
|
||||
("PERCENT SIGN" #x0025)
|
||||
("AMPERSAND" #x0026)
|
||||
("APOSTROPHE" #x0027)
|
||||
("LEFT PARENTHESIS" #x0028)
|
||||
("RIGHT PARENTHESIS" #x0029)
|
||||
("ASTERISK" #x002A)
|
||||
("PLUS SIGN" #x002B)
|
||||
("COMMA" #x002C)
|
||||
("HYPHEN-MINUS" #x002D)
|
||||
("FULL STOP" #x002E)
|
||||
("SOLIDUS" #x002F)
|
||||
("DIGIT ZERO" #x0030)
|
||||
("DIGIT ONE" #x0031)
|
||||
("DIGIT TWO" #x0032)
|
||||
("DIGIT THREE" #x0033)
|
||||
("DIGIT FOUR" #x0034)
|
||||
("DIGIT FIVE" #x0035)
|
||||
("DIGIT SIX" #x0036)
|
||||
("DIGIT SEVEN" #x0037)
|
||||
("DIGIT EIGHT" #x0038)
|
||||
("DIGIT NINE" #x0039)
|
||||
("COLON" #x003A)
|
||||
("SEMICOLON" #x003B)
|
||||
("LESS-THAN SIGN" #x003C)
|
||||
("EQUALS SIGN" #x003D)
|
||||
("GREATER-THAN SIGN" #x003E)
|
||||
("QUESTION MARK" #x003F)
|
||||
("COMMERCIAL AT" #x0040)
|
||||
("LATIN CAPITAL LETTER A" #x0041)
|
||||
("LATIN CAPITAL LETTER B" #x0042)
|
||||
("LATIN CAPITAL LETTER C" #x0043)
|
||||
("LATIN CAPITAL LETTER D" #x0044)
|
||||
("LATIN CAPITAL LETTER E" #x0045)
|
||||
("LATIN CAPITAL LETTER F" #x0046)
|
||||
("LATIN CAPITAL LETTER G" #x0047)
|
||||
("LATIN CAPITAL LETTER H" #x0048)
|
||||
("LATIN CAPITAL LETTER I" #x0049)
|
||||
("LATIN CAPITAL LETTER J" #x004A)
|
||||
("LATIN CAPITAL LETTER K" #x004B)
|
||||
("LATIN CAPITAL LETTER L" #x004C)
|
||||
("LATIN CAPITAL LETTER M" #x004D)
|
||||
("LATIN CAPITAL LETTER N" #x004E)
|
||||
("LATIN CAPITAL LETTER O" #x004F)
|
||||
("LATIN CAPITAL LETTER P" #x0050)
|
||||
("LATIN CAPITAL LETTER Q" #x0051)
|
||||
("LATIN CAPITAL LETTER R" #x0052)
|
||||
("LATIN CAPITAL LETTER S" #x0053)
|
||||
("LATIN CAPITAL LETTER T" #x0054)
|
||||
("LATIN CAPITAL LETTER U" #x0055)
|
||||
("LATIN CAPITAL LETTER V" #x0056)
|
||||
("LATIN CAPITAL LETTER W" #x0057)
|
||||
("LATIN CAPITAL LETTER X" #x0058)
|
||||
("LATIN CAPITAL LETTER Y" #x0059)
|
||||
("LATIN CAPITAL LETTER Z" #x005A)
|
||||
("LEFT SQUARE BRACKET" #x005B)
|
||||
("REVERSE SOLIDUS" #x005C)
|
||||
("RIGHT SQUARE BRACKET" #x005D)
|
||||
("CIRCUMFLEX ACCENT" #x005E)
|
||||
("LOW LINE" #x005F)
|
||||
("GRAVE ACCENT" #x0060)
|
||||
("LATIN SMALL LETTER A" #x0061)
|
||||
("LATIN SMALL LETTER B" #x0062)
|
||||
("LATIN SMALL LETTER C" #x0063)
|
||||
("LATIN SMALL LETTER D" #x0064)
|
||||
("LATIN SMALL LETTER E" #x0065)
|
||||
("LATIN SMALL LETTER F" #x0066)
|
||||
("LATIN SMALL LETTER G" #x0067)
|
||||
("LATIN SMALL LETTER H" #x0068)
|
||||
("LATIN SMALL LETTER I" #x0069)
|
||||
("LATIN SMALL LETTER J" #x006A)
|
||||
("LATIN SMALL LETTER K" #x006B)
|
||||
("LATIN SMALL LETTER L" #x006C)
|
||||
("LATIN SMALL LETTER M" #x006D)
|
||||
("LATIN SMALL LETTER N" #x006E)
|
||||
("LATIN SMALL LETTER O" #x006F)
|
||||
("LATIN SMALL LETTER P" #x0070)
|
||||
("LATIN SMALL LETTER Q" #x0071)
|
||||
("LATIN SMALL LETTER R" #x0072)
|
||||
("LATIN SMALL LETTER S" #x0073)
|
||||
("LATIN SMALL LETTER T" #x0074)
|
||||
("LATIN SMALL LETTER U" #x0075)
|
||||
("LATIN SMALL LETTER V" #x0076)
|
||||
("LATIN SMALL LETTER W" #x0077)
|
||||
("LATIN SMALL LETTER X" #x0078)
|
||||
("LATIN SMALL LETTER Y" #x0079)
|
||||
("LATIN SMALL LETTER Z" #x007A)
|
||||
("LEFT CURLY BRACKET" #x007B)
|
||||
("VERTICAL LINE" #x007C)
|
||||
("RIGHT CURLY BRACKET" #x007D)
|
||||
("TILDE" #x007E)
|
||||
))
|
||||
|
||||
;; arch-tag: c46ffe15-ef5b-46f6-837f-d6bcf56db5b2
|
100
etc/nxml/00080-000FF.el
Normal file
100
etc/nxml/00080-000FF.el
Normal file
|
@ -0,0 +1,100 @@
|
|||
(nxml-define-char-name-set 'latin-1-supplement
|
||||
'(("NO-BREAK SPACE" #x00A0)
|
||||
("INVERTED EXCLAMATION MARK" #x00A1)
|
||||
("CENT SIGN" #x00A2)
|
||||
("POUND SIGN" #x00A3)
|
||||
("CURRENCY SIGN" #x00A4)
|
||||
("YEN SIGN" #x00A5)
|
||||
("BROKEN BAR" #x00A6)
|
||||
("SECTION SIGN" #x00A7)
|
||||
("DIAERESIS" #x00A8)
|
||||
("COPYRIGHT SIGN" #x00A9)
|
||||
("FEMININE ORDINAL INDICATOR" #x00AA)
|
||||
("LEFT-POINTING DOUBLE ANGLE QUOTATION MARK" #x00AB)
|
||||
("NOT SIGN" #x00AC)
|
||||
("SOFT HYPHEN" #x00AD)
|
||||
("REGISTERED SIGN" #x00AE)
|
||||
("MACRON" #x00AF)
|
||||
("DEGREE SIGN" #x00B0)
|
||||
("PLUS-MINUS SIGN" #x00B1)
|
||||
("SUPERSCRIPT TWO" #x00B2)
|
||||
("SUPERSCRIPT THREE" #x00B3)
|
||||
("ACUTE ACCENT" #x00B4)
|
||||
("MICRO SIGN" #x00B5)
|
||||
("PILCROW SIGN" #x00B6)
|
||||
("MIDDLE DOT" #x00B7)
|
||||
("CEDILLA" #x00B8)
|
||||
("SUPERSCRIPT ONE" #x00B9)
|
||||
("MASCULINE ORDINAL INDICATOR" #x00BA)
|
||||
("RIGHT-POINTING DOUBLE ANGLE QUOTATION MARK" #x00BB)
|
||||
("VULGAR FRACTION ONE QUARTER" #x00BC)
|
||||
("VULGAR FRACTION ONE HALF" #x00BD)
|
||||
("VULGAR FRACTION THREE QUARTERS" #x00BE)
|
||||
("INVERTED QUESTION MARK" #x00BF)
|
||||
("LATIN CAPITAL LETTER A WITH GRAVE" #x00C0)
|
||||
("LATIN CAPITAL LETTER A WITH ACUTE" #x00C1)
|
||||
("LATIN CAPITAL LETTER A WITH CIRCUMFLEX" #x00C2)
|
||||
("LATIN CAPITAL LETTER A WITH TILDE" #x00C3)
|
||||
("LATIN CAPITAL LETTER A WITH DIAERESIS" #x00C4)
|
||||
("LATIN CAPITAL LETTER A WITH RING ABOVE" #x00C5)
|
||||
("LATIN CAPITAL LETTER AE" #x00C6)
|
||||
("LATIN CAPITAL LETTER C WITH CEDILLA" #x00C7)
|
||||
("LATIN CAPITAL LETTER E WITH GRAVE" #x00C8)
|
||||
("LATIN CAPITAL LETTER E WITH ACUTE" #x00C9)
|
||||
("LATIN CAPITAL LETTER E WITH CIRCUMFLEX" #x00CA)
|
||||
("LATIN CAPITAL LETTER E WITH DIAERESIS" #x00CB)
|
||||
("LATIN CAPITAL LETTER I WITH GRAVE" #x00CC)
|
||||
("LATIN CAPITAL LETTER I WITH ACUTE" #x00CD)
|
||||
("LATIN CAPITAL LETTER I WITH CIRCUMFLEX" #x00CE)
|
||||
("LATIN CAPITAL LETTER I WITH DIAERESIS" #x00CF)
|
||||
("LATIN CAPITAL LETTER ETH" #x00D0)
|
||||
("LATIN CAPITAL LETTER N WITH TILDE" #x00D1)
|
||||
("LATIN CAPITAL LETTER O WITH GRAVE" #x00D2)
|
||||
("LATIN CAPITAL LETTER O WITH ACUTE" #x00D3)
|
||||
("LATIN CAPITAL LETTER O WITH CIRCUMFLEX" #x00D4)
|
||||
("LATIN CAPITAL LETTER O WITH TILDE" #x00D5)
|
||||
("LATIN CAPITAL LETTER O WITH DIAERESIS" #x00D6)
|
||||
("MULTIPLICATION SIGN" #x00D7)
|
||||
("LATIN CAPITAL LETTER O WITH STROKE" #x00D8)
|
||||
("LATIN CAPITAL LETTER U WITH GRAVE" #x00D9)
|
||||
("LATIN CAPITAL LETTER U WITH ACUTE" #x00DA)
|
||||
("LATIN CAPITAL LETTER U WITH CIRCUMFLEX" #x00DB)
|
||||
("LATIN CAPITAL LETTER U WITH DIAERESIS" #x00DC)
|
||||
("LATIN CAPITAL LETTER Y WITH ACUTE" #x00DD)
|
||||
("LATIN CAPITAL LETTER THORN" #x00DE)
|
||||
("LATIN SMALL LETTER SHARP S" #x00DF)
|
||||
("LATIN SMALL LETTER A WITH GRAVE" #x00E0)
|
||||
("LATIN SMALL LETTER A WITH ACUTE" #x00E1)
|
||||
("LATIN SMALL LETTER A WITH CIRCUMFLEX" #x00E2)
|
||||
("LATIN SMALL LETTER A WITH TILDE" #x00E3)
|
||||
("LATIN SMALL LETTER A WITH DIAERESIS" #x00E4)
|
||||
("LATIN SMALL LETTER A WITH RING ABOVE" #x00E5)
|
||||
("LATIN SMALL LETTER AE" #x00E6)
|
||||
("LATIN SMALL LETTER C WITH CEDILLA" #x00E7)
|
||||
("LATIN SMALL LETTER E WITH GRAVE" #x00E8)
|
||||
("LATIN SMALL LETTER E WITH ACUTE" #x00E9)
|
||||
("LATIN SMALL LETTER E WITH CIRCUMFLEX" #x00EA)
|
||||
("LATIN SMALL LETTER E WITH DIAERESIS" #x00EB)
|
||||
("LATIN SMALL LETTER I WITH GRAVE" #x00EC)
|
||||
("LATIN SMALL LETTER I WITH ACUTE" #x00ED)
|
||||
("LATIN SMALL LETTER I WITH CIRCUMFLEX" #x00EE)
|
||||
("LATIN SMALL LETTER I WITH DIAERESIS" #x00EF)
|
||||
("LATIN SMALL LETTER ETH" #x00F0)
|
||||
("LATIN SMALL LETTER N WITH TILDE" #x00F1)
|
||||
("LATIN SMALL LETTER O WITH GRAVE" #x00F2)
|
||||
("LATIN SMALL LETTER O WITH ACUTE" #x00F3)
|
||||
("LATIN SMALL LETTER O WITH CIRCUMFLEX" #x00F4)
|
||||
("LATIN SMALL LETTER O WITH TILDE" #x00F5)
|
||||
("LATIN SMALL LETTER O WITH DIAERESIS" #x00F6)
|
||||
("DIVISION SIGN" #x00F7)
|
||||
("LATIN SMALL LETTER O WITH STROKE" #x00F8)
|
||||
("LATIN SMALL LETTER U WITH GRAVE" #x00F9)
|
||||
("LATIN SMALL LETTER U WITH ACUTE" #x00FA)
|
||||
("LATIN SMALL LETTER U WITH CIRCUMFLEX" #x00FB)
|
||||
("LATIN SMALL LETTER U WITH DIAERESIS" #x00FC)
|
||||
("LATIN SMALL LETTER Y WITH ACUTE" #x00FD)
|
||||
("LATIN SMALL LETTER THORN" #x00FE)
|
||||
("LATIN SMALL LETTER Y WITH DIAERESIS" #x00FF)
|
||||
))
|
||||
|
||||
;; arch-tag: f7ca0f06-9eb7-4b7a-b014-795af10f23ac
|
132
etc/nxml/00100-0017F.el
Normal file
132
etc/nxml/00100-0017F.el
Normal file
|
@ -0,0 +1,132 @@
|
|||
(nxml-define-char-name-set 'latin-extended-a
|
||||
'(("LATIN CAPITAL LETTER A WITH MACRON" #x0100)
|
||||
("LATIN SMALL LETTER A WITH MACRON" #x0101)
|
||||
("LATIN CAPITAL LETTER A WITH BREVE" #x0102)
|
||||
("LATIN SMALL LETTER A WITH BREVE" #x0103)
|
||||
("LATIN CAPITAL LETTER A WITH OGONEK" #x0104)
|
||||
("LATIN SMALL LETTER A WITH OGONEK" #x0105)
|
||||
("LATIN CAPITAL LETTER C WITH ACUTE" #x0106)
|
||||
("LATIN SMALL LETTER C WITH ACUTE" #x0107)
|
||||
("LATIN CAPITAL LETTER C WITH CIRCUMFLEX" #x0108)
|
||||
("LATIN SMALL LETTER C WITH CIRCUMFLEX" #x0109)
|
||||
("LATIN CAPITAL LETTER C WITH DOT ABOVE" #x010A)
|
||||
("LATIN SMALL LETTER C WITH DOT ABOVE" #x010B)
|
||||
("LATIN CAPITAL LETTER C WITH CARON" #x010C)
|
||||
("LATIN SMALL LETTER C WITH CARON" #x010D)
|
||||
("LATIN CAPITAL LETTER D WITH CARON" #x010E)
|
||||
("LATIN SMALL LETTER D WITH CARON" #x010F)
|
||||
("LATIN CAPITAL LETTER D WITH STROKE" #x0110)
|
||||
("LATIN SMALL LETTER D WITH STROKE" #x0111)
|
||||
("LATIN CAPITAL LETTER E WITH MACRON" #x0112)
|
||||
("LATIN SMALL LETTER E WITH MACRON" #x0113)
|
||||
("LATIN CAPITAL LETTER E WITH BREVE" #x0114)
|
||||
("LATIN SMALL LETTER E WITH BREVE" #x0115)
|
||||
("LATIN CAPITAL LETTER E WITH DOT ABOVE" #x0116)
|
||||
("LATIN SMALL LETTER E WITH DOT ABOVE" #x0117)
|
||||
("LATIN CAPITAL LETTER E WITH OGONEK" #x0118)
|
||||
("LATIN SMALL LETTER E WITH OGONEK" #x0119)
|
||||
("LATIN CAPITAL LETTER E WITH CARON" #x011A)
|
||||
("LATIN SMALL LETTER E WITH CARON" #x011B)
|
||||
("LATIN CAPITAL LETTER G WITH CIRCUMFLEX" #x011C)
|
||||
("LATIN SMALL LETTER G WITH CIRCUMFLEX" #x011D)
|
||||
("LATIN CAPITAL LETTER G WITH BREVE" #x011E)
|
||||
("LATIN SMALL LETTER G WITH BREVE" #x011F)
|
||||
("LATIN CAPITAL LETTER G WITH DOT ABOVE" #x0120)
|
||||
("LATIN SMALL LETTER G WITH DOT ABOVE" #x0121)
|
||||
("LATIN CAPITAL LETTER G WITH CEDILLA" #x0122)
|
||||
("LATIN SMALL LETTER G WITH CEDILLA" #x0123)
|
||||
("LATIN CAPITAL LETTER H WITH CIRCUMFLEX" #x0124)
|
||||
("LATIN SMALL LETTER H WITH CIRCUMFLEX" #x0125)
|
||||
("LATIN CAPITAL LETTER H WITH STROKE" #x0126)
|
||||
("LATIN SMALL LETTER H WITH STROKE" #x0127)
|
||||
("LATIN CAPITAL LETTER I WITH TILDE" #x0128)
|
||||
("LATIN SMALL LETTER I WITH TILDE" #x0129)
|
||||
("LATIN CAPITAL LETTER I WITH MACRON" #x012A)
|
||||
("LATIN SMALL LETTER I WITH MACRON" #x012B)
|
||||
("LATIN CAPITAL LETTER I WITH BREVE" #x012C)
|
||||
("LATIN SMALL LETTER I WITH BREVE" #x012D)
|
||||
("LATIN CAPITAL LETTER I WITH OGONEK" #x012E)
|
||||
("LATIN SMALL LETTER I WITH OGONEK" #x012F)
|
||||
("LATIN CAPITAL LETTER I WITH DOT ABOVE" #x0130)
|
||||
("LATIN SMALL LETTER DOTLESS I" #x0131)
|
||||
("LATIN CAPITAL LIGATURE IJ" #x0132)
|
||||
("LATIN SMALL LIGATURE IJ" #x0133)
|
||||
("LATIN CAPITAL LETTER J WITH CIRCUMFLEX" #x0134)
|
||||
("LATIN SMALL LETTER J WITH CIRCUMFLEX" #x0135)
|
||||
("LATIN CAPITAL LETTER K WITH CEDILLA" #x0136)
|
||||
("LATIN SMALL LETTER K WITH CEDILLA" #x0137)
|
||||
("LATIN SMALL LETTER KRA" #x0138)
|
||||
("LATIN CAPITAL LETTER L WITH ACUTE" #x0139)
|
||||
("LATIN SMALL LETTER L WITH ACUTE" #x013A)
|
||||
("LATIN CAPITAL LETTER L WITH CEDILLA" #x013B)
|
||||
("LATIN SMALL LETTER L WITH CEDILLA" #x013C)
|
||||
("LATIN CAPITAL LETTER L WITH CARON" #x013D)
|
||||
("LATIN SMALL LETTER L WITH CARON" #x013E)
|
||||
("LATIN CAPITAL LETTER L WITH MIDDLE DOT" #x013F)
|
||||
("LATIN SMALL LETTER L WITH MIDDLE DOT" #x0140)
|
||||
("LATIN CAPITAL LETTER L WITH STROKE" #x0141)
|
||||
("LATIN SMALL LETTER L WITH STROKE" #x0142)
|
||||
("LATIN CAPITAL LETTER N WITH ACUTE" #x0143)
|
||||
("LATIN SMALL LETTER N WITH ACUTE" #x0144)
|
||||
("LATIN CAPITAL LETTER N WITH CEDILLA" #x0145)
|
||||
("LATIN SMALL LETTER N WITH CEDILLA" #x0146)
|
||||
("LATIN CAPITAL LETTER N WITH CARON" #x0147)
|
||||
("LATIN SMALL LETTER N WITH CARON" #x0148)
|
||||
("LATIN SMALL LETTER N PRECEDED BY APOSTROPHE" #x0149)
|
||||
("LATIN CAPITAL LETTER ENG" #x014A)
|
||||
("LATIN SMALL LETTER ENG" #x014B)
|
||||
("LATIN CAPITAL LETTER O WITH MACRON" #x014C)
|
||||
("LATIN SMALL LETTER O WITH MACRON" #x014D)
|
||||
("LATIN CAPITAL LETTER O WITH BREVE" #x014E)
|
||||
("LATIN SMALL LETTER O WITH BREVE" #x014F)
|
||||
("LATIN CAPITAL LETTER O WITH DOUBLE ACUTE" #x0150)
|
||||
("LATIN SMALL LETTER O WITH DOUBLE ACUTE" #x0151)
|
||||
("LATIN CAPITAL LIGATURE OE" #x0152)
|
||||
("LATIN SMALL LIGATURE OE" #x0153)
|
||||
("LATIN CAPITAL LETTER R WITH ACUTE" #x0154)
|
||||
("LATIN SMALL LETTER R WITH ACUTE" #x0155)
|
||||
("LATIN CAPITAL LETTER R WITH CEDILLA" #x0156)
|
||||
("LATIN SMALL LETTER R WITH CEDILLA" #x0157)
|
||||
("LATIN CAPITAL LETTER R WITH CARON" #x0158)
|
||||
("LATIN SMALL LETTER R WITH CARON" #x0159)
|
||||
("LATIN CAPITAL LETTER S WITH ACUTE" #x015A)
|
||||
("LATIN SMALL LETTER S WITH ACUTE" #x015B)
|
||||
("LATIN CAPITAL LETTER S WITH CIRCUMFLEX" #x015C)
|
||||
("LATIN SMALL LETTER S WITH CIRCUMFLEX" #x015D)
|
||||
("LATIN CAPITAL LETTER S WITH CEDILLA" #x015E)
|
||||
("LATIN SMALL LETTER S WITH CEDILLA" #x015F)
|
||||
("LATIN CAPITAL LETTER S WITH CARON" #x0160)
|
||||
("LATIN SMALL LETTER S WITH CARON" #x0161)
|
||||
("LATIN CAPITAL LETTER T WITH CEDILLA" #x0162)
|
||||
("LATIN SMALL LETTER T WITH CEDILLA" #x0163)
|
||||
("LATIN CAPITAL LETTER T WITH CARON" #x0164)
|
||||
("LATIN SMALL LETTER T WITH CARON" #x0165)
|
||||
("LATIN CAPITAL LETTER T WITH STROKE" #x0166)
|
||||
("LATIN SMALL LETTER T WITH STROKE" #x0167)
|
||||
("LATIN CAPITAL LETTER U WITH TILDE" #x0168)
|
||||
("LATIN SMALL LETTER U WITH TILDE" #x0169)
|
||||
("LATIN CAPITAL LETTER U WITH MACRON" #x016A)
|
||||
("LATIN SMALL LETTER U WITH MACRON" #x016B)
|
||||
("LATIN CAPITAL LETTER U WITH BREVE" #x016C)
|
||||
("LATIN SMALL LETTER U WITH BREVE" #x016D)
|
||||
("LATIN CAPITAL LETTER U WITH RING ABOVE" #x016E)
|
||||
("LATIN SMALL LETTER U WITH RING ABOVE" #x016F)
|
||||
("LATIN CAPITAL LETTER U WITH DOUBLE ACUTE" #x0170)
|
||||
("LATIN SMALL LETTER U WITH DOUBLE ACUTE" #x0171)
|
||||
("LATIN CAPITAL LETTER U WITH OGONEK" #x0172)
|
||||
("LATIN SMALL LETTER U WITH OGONEK" #x0173)
|
||||
("LATIN CAPITAL LETTER W WITH CIRCUMFLEX" #x0174)
|
||||
("LATIN SMALL LETTER W WITH CIRCUMFLEX" #x0175)
|
||||
("LATIN CAPITAL LETTER Y WITH CIRCUMFLEX" #x0176)
|
||||
("LATIN SMALL LETTER Y WITH CIRCUMFLEX" #x0177)
|
||||
("LATIN CAPITAL LETTER Y WITH DIAERESIS" #x0178)
|
||||
("LATIN CAPITAL LETTER Z WITH ACUTE" #x0179)
|
||||
("LATIN SMALL LETTER Z WITH ACUTE" #x017A)
|
||||
("LATIN CAPITAL LETTER Z WITH DOT ABOVE" #x017B)
|
||||
("LATIN SMALL LETTER Z WITH DOT ABOVE" #x017C)
|
||||
("LATIN CAPITAL LETTER Z WITH CARON" #x017D)
|
||||
("LATIN SMALL LETTER Z WITH CARON" #x017E)
|
||||
("LATIN SMALL LETTER LONG S" #x017F)
|
||||
))
|
||||
|
||||
;; arch-tag: 30e6e868-1bc7-4cd1-b75b-7fd4354cf8fe
|
183
etc/nxml/00180-0024F.el
Normal file
183
etc/nxml/00180-0024F.el
Normal file
|
@ -0,0 +1,183 @@
|
|||
(nxml-define-char-name-set 'latin-extended-b
|
||||
'(("LATIN SMALL LETTER B WITH STROKE" #x0180)
|
||||
("LATIN CAPITAL LETTER B WITH HOOK" #x0181)
|
||||
("LATIN CAPITAL LETTER B WITH TOPBAR" #x0182)
|
||||
("LATIN SMALL LETTER B WITH TOPBAR" #x0183)
|
||||
("LATIN CAPITAL LETTER TONE SIX" #x0184)
|
||||
("LATIN SMALL LETTER TONE SIX" #x0185)
|
||||
("LATIN CAPITAL LETTER OPEN O" #x0186)
|
||||
("LATIN CAPITAL LETTER C WITH HOOK" #x0187)
|
||||
("LATIN SMALL LETTER C WITH HOOK" #x0188)
|
||||
("LATIN CAPITAL LETTER AFRICAN D" #x0189)
|
||||
("LATIN CAPITAL LETTER D WITH HOOK" #x018A)
|
||||
("LATIN CAPITAL LETTER D WITH TOPBAR" #x018B)
|
||||
("LATIN SMALL LETTER D WITH TOPBAR" #x018C)
|
||||
("LATIN SMALL LETTER TURNED DELTA" #x018D)
|
||||
("LATIN CAPITAL LETTER REVERSED E" #x018E)
|
||||
("LATIN CAPITAL LETTER SCHWA" #x018F)
|
||||
("LATIN CAPITAL LETTER OPEN E" #x0190)
|
||||
("LATIN CAPITAL LETTER F WITH HOOK" #x0191)
|
||||
("LATIN SMALL LETTER F WITH HOOK" #x0192)
|
||||
("LATIN CAPITAL LETTER G WITH HOOK" #x0193)
|
||||
("LATIN CAPITAL LETTER GAMMA" #x0194)
|
||||
("LATIN SMALL LETTER HV" #x0195)
|
||||
("LATIN CAPITAL LETTER IOTA" #x0196)
|
||||
("LATIN CAPITAL LETTER I WITH STROKE" #x0197)
|
||||
("LATIN CAPITAL LETTER K WITH HOOK" #x0198)
|
||||
("LATIN SMALL LETTER K WITH HOOK" #x0199)
|
||||
("LATIN SMALL LETTER L WITH BAR" #x019A)
|
||||
("LATIN SMALL LETTER LAMBDA WITH STROKE" #x019B)
|
||||
("LATIN CAPITAL LETTER TURNED M" #x019C)
|
||||
("LATIN CAPITAL LETTER N WITH LEFT HOOK" #x019D)
|
||||
("LATIN SMALL LETTER N WITH LONG RIGHT LEG" #x019E)
|
||||
("LATIN CAPITAL LETTER O WITH MIDDLE TILDE" #x019F)
|
||||
("LATIN CAPITAL LETTER O WITH HORN" #x01A0)
|
||||
("LATIN SMALL LETTER O WITH HORN" #x01A1)
|
||||
("LATIN CAPITAL LETTER OI" #x01A2)
|
||||
("LATIN SMALL LETTER OI" #x01A3)
|
||||
("LATIN CAPITAL LETTER P WITH HOOK" #x01A4)
|
||||
("LATIN SMALL LETTER P WITH HOOK" #x01A5)
|
||||
("LATIN LETTER YR" #x01A6)
|
||||
("LATIN CAPITAL LETTER TONE TWO" #x01A7)
|
||||
("LATIN SMALL LETTER TONE TWO" #x01A8)
|
||||
("LATIN CAPITAL LETTER ESH" #x01A9)
|
||||
("LATIN LETTER REVERSED ESH LOOP" #x01AA)
|
||||
("LATIN SMALL LETTER T WITH PALATAL HOOK" #x01AB)
|
||||
("LATIN CAPITAL LETTER T WITH HOOK" #x01AC)
|
||||
("LATIN SMALL LETTER T WITH HOOK" #x01AD)
|
||||
("LATIN CAPITAL LETTER T WITH RETROFLEX HOOK" #x01AE)
|
||||
("LATIN CAPITAL LETTER U WITH HORN" #x01AF)
|
||||
("LATIN SMALL LETTER U WITH HORN" #x01B0)
|
||||
("LATIN CAPITAL LETTER UPSILON" #x01B1)
|
||||
("LATIN CAPITAL LETTER V WITH HOOK" #x01B2)
|
||||
("LATIN CAPITAL LETTER Y WITH HOOK" #x01B3)
|
||||
("LATIN SMALL LETTER Y WITH HOOK" #x01B4)
|
||||
("LATIN CAPITAL LETTER Z WITH STROKE" #x01B5)
|
||||
("LATIN SMALL LETTER Z WITH STROKE" #x01B6)
|
||||
("LATIN CAPITAL LETTER EZH" #x01B7)
|
||||
("LATIN CAPITAL LETTER EZH REVERSED" #x01B8)
|
||||
("LATIN SMALL LETTER EZH REVERSED" #x01B9)
|
||||
("LATIN SMALL LETTER EZH WITH TAIL" #x01BA)
|
||||
("LATIN LETTER TWO WITH STROKE" #x01BB)
|
||||
("LATIN CAPITAL LETTER TONE FIVE" #x01BC)
|
||||
("LATIN SMALL LETTER TONE FIVE" #x01BD)
|
||||
("LATIN LETTER INVERTED GLOTTAL STOP WITH STROKE" #x01BE)
|
||||
("LATIN LETTER WYNN" #x01BF)
|
||||
("LATIN LETTER DENTAL CLICK" #x01C0)
|
||||
("LATIN LETTER LATERAL CLICK" #x01C1)
|
||||
("LATIN LETTER ALVEOLAR CLICK" #x01C2)
|
||||
("LATIN LETTER RETROFLEX CLICK" #x01C3)
|
||||
("LATIN CAPITAL LETTER DZ WITH CARON" #x01C4)
|
||||
("LATIN CAPITAL LETTER D WITH SMALL LETTER Z WITH CARON" #x01C5)
|
||||
("LATIN SMALL LETTER DZ WITH CARON" #x01C6)
|
||||
("LATIN CAPITAL LETTER LJ" #x01C7)
|
||||
("LATIN CAPITAL LETTER L WITH SMALL LETTER J" #x01C8)
|
||||
("LATIN SMALL LETTER LJ" #x01C9)
|
||||
("LATIN CAPITAL LETTER NJ" #x01CA)
|
||||
("LATIN CAPITAL LETTER N WITH SMALL LETTER J" #x01CB)
|
||||
("LATIN SMALL LETTER NJ" #x01CC)
|
||||
("LATIN CAPITAL LETTER A WITH CARON" #x01CD)
|
||||
("LATIN SMALL LETTER A WITH CARON" #x01CE)
|
||||
("LATIN CAPITAL LETTER I WITH CARON" #x01CF)
|
||||
("LATIN SMALL LETTER I WITH CARON" #x01D0)
|
||||
("LATIN CAPITAL LETTER O WITH CARON" #x01D1)
|
||||
("LATIN SMALL LETTER O WITH CARON" #x01D2)
|
||||
("LATIN CAPITAL LETTER U WITH CARON" #x01D3)
|
||||
("LATIN SMALL LETTER U WITH CARON" #x01D4)
|
||||
("LATIN CAPITAL LETTER U WITH DIAERESIS AND MACRON" #x01D5)
|
||||
("LATIN SMALL LETTER U WITH DIAERESIS AND MACRON" #x01D6)
|
||||
("LATIN CAPITAL LETTER U WITH DIAERESIS AND ACUTE" #x01D7)
|
||||
("LATIN SMALL LETTER U WITH DIAERESIS AND ACUTE" #x01D8)
|
||||
("LATIN CAPITAL LETTER U WITH DIAERESIS AND CARON" #x01D9)
|
||||
("LATIN SMALL LETTER U WITH DIAERESIS AND CARON" #x01DA)
|
||||
("LATIN CAPITAL LETTER U WITH DIAERESIS AND GRAVE" #x01DB)
|
||||
("LATIN SMALL LETTER U WITH DIAERESIS AND GRAVE" #x01DC)
|
||||
("LATIN SMALL LETTER TURNED E" #x01DD)
|
||||
("LATIN CAPITAL LETTER A WITH DIAERESIS AND MACRON" #x01DE)
|
||||
("LATIN SMALL LETTER A WITH DIAERESIS AND MACRON" #x01DF)
|
||||
("LATIN CAPITAL LETTER A WITH DOT ABOVE AND MACRON" #x01E0)
|
||||
("LATIN SMALL LETTER A WITH DOT ABOVE AND MACRON" #x01E1)
|
||||
("LATIN CAPITAL LETTER AE WITH MACRON" #x01E2)
|
||||
("LATIN SMALL LETTER AE WITH MACRON" #x01E3)
|
||||
("LATIN CAPITAL LETTER G WITH STROKE" #x01E4)
|
||||
("LATIN SMALL LETTER G WITH STROKE" #x01E5)
|
||||
("LATIN CAPITAL LETTER G WITH CARON" #x01E6)
|
||||
("LATIN SMALL LETTER G WITH CARON" #x01E7)
|
||||
("LATIN CAPITAL LETTER K WITH CARON" #x01E8)
|
||||
("LATIN SMALL LETTER K WITH CARON" #x01E9)
|
||||
("LATIN CAPITAL LETTER O WITH OGONEK" #x01EA)
|
||||
("LATIN SMALL LETTER O WITH OGONEK" #x01EB)
|
||||
("LATIN CAPITAL LETTER O WITH OGONEK AND MACRON" #x01EC)
|
||||
("LATIN SMALL LETTER O WITH OGONEK AND MACRON" #x01ED)
|
||||
("LATIN CAPITAL LETTER EZH WITH CARON" #x01EE)
|
||||
("LATIN SMALL LETTER EZH WITH CARON" #x01EF)
|
||||
("LATIN SMALL LETTER J WITH CARON" #x01F0)
|
||||
("LATIN CAPITAL LETTER DZ" #x01F1)
|
||||
("LATIN CAPITAL LETTER D WITH SMALL LETTER Z" #x01F2)
|
||||
("LATIN SMALL LETTER DZ" #x01F3)
|
||||
("LATIN CAPITAL LETTER G WITH ACUTE" #x01F4)
|
||||
("LATIN SMALL LETTER G WITH ACUTE" #x01F5)
|
||||
("LATIN CAPITAL LETTER HWAIR" #x01F6)
|
||||
("LATIN CAPITAL LETTER WYNN" #x01F7)
|
||||
("LATIN CAPITAL LETTER N WITH GRAVE" #x01F8)
|
||||
("LATIN SMALL LETTER N WITH GRAVE" #x01F9)
|
||||
("LATIN CAPITAL LETTER A WITH RING ABOVE AND ACUTE" #x01FA)
|
||||
("LATIN SMALL LETTER A WITH RING ABOVE AND ACUTE" #x01FB)
|
||||
("LATIN CAPITAL LETTER AE WITH ACUTE" #x01FC)
|
||||
("LATIN SMALL LETTER AE WITH ACUTE" #x01FD)
|
||||
("LATIN CAPITAL LETTER O WITH STROKE AND ACUTE" #x01FE)
|
||||
("LATIN SMALL LETTER O WITH STROKE AND ACUTE" #x01FF)
|
||||
("LATIN CAPITAL LETTER A WITH DOUBLE GRAVE" #x0200)
|
||||
("LATIN SMALL LETTER A WITH DOUBLE GRAVE" #x0201)
|
||||
("LATIN CAPITAL LETTER A WITH INVERTED BREVE" #x0202)
|
||||
("LATIN SMALL LETTER A WITH INVERTED BREVE" #x0203)
|
||||
("LATIN CAPITAL LETTER E WITH DOUBLE GRAVE" #x0204)
|
||||
("LATIN SMALL LETTER E WITH DOUBLE GRAVE" #x0205)
|
||||
("LATIN CAPITAL LETTER E WITH INVERTED BREVE" #x0206)
|
||||
("LATIN SMALL LETTER E WITH INVERTED BREVE" #x0207)
|
||||
("LATIN CAPITAL LETTER I WITH DOUBLE GRAVE" #x0208)
|
||||
("LATIN SMALL LETTER I WITH DOUBLE GRAVE" #x0209)
|
||||
("LATIN CAPITAL LETTER I WITH INVERTED BREVE" #x020A)
|
||||
("LATIN SMALL LETTER I WITH INVERTED BREVE" #x020B)
|
||||
("LATIN CAPITAL LETTER O WITH DOUBLE GRAVE" #x020C)
|
||||
("LATIN SMALL LETTER O WITH DOUBLE GRAVE" #x020D)
|
||||
("LATIN CAPITAL LETTER O WITH INVERTED BREVE" #x020E)
|
||||
("LATIN SMALL LETTER O WITH INVERTED BREVE" #x020F)
|
||||
("LATIN CAPITAL LETTER R WITH DOUBLE GRAVE" #x0210)
|
||||
("LATIN SMALL LETTER R WITH DOUBLE GRAVE" #x0211)
|
||||
("LATIN CAPITAL LETTER R WITH INVERTED BREVE" #x0212)
|
||||
("LATIN SMALL LETTER R WITH INVERTED BREVE" #x0213)
|
||||
("LATIN CAPITAL LETTER U WITH DOUBLE GRAVE" #x0214)
|
||||
("LATIN SMALL LETTER U WITH DOUBLE GRAVE" #x0215)
|
||||
("LATIN CAPITAL LETTER U WITH INVERTED BREVE" #x0216)
|
||||
("LATIN SMALL LETTER U WITH INVERTED BREVE" #x0217)
|
||||
("LATIN CAPITAL LETTER S WITH COMMA BELOW" #x0218)
|
||||
("LATIN SMALL LETTER S WITH COMMA BELOW" #x0219)
|
||||
("LATIN CAPITAL LETTER T WITH COMMA BELOW" #x021A)
|
||||
("LATIN SMALL LETTER T WITH COMMA BELOW" #x021B)
|
||||
("LATIN CAPITAL LETTER YOGH" #x021C)
|
||||
("LATIN SMALL LETTER YOGH" #x021D)
|
||||
("LATIN CAPITAL LETTER H WITH CARON" #x021E)
|
||||
("LATIN SMALL LETTER H WITH CARON" #x021F)
|
||||
("LATIN CAPITAL LETTER N WITH LONG RIGHT LEG" #x0220)
|
||||
("LATIN CAPITAL LETTER OU" #x0222)
|
||||
("LATIN SMALL LETTER OU" #x0223)
|
||||
("LATIN CAPITAL LETTER Z WITH HOOK" #x0224)
|
||||
("LATIN SMALL LETTER Z WITH HOOK" #x0225)
|
||||
("LATIN CAPITAL LETTER A WITH DOT ABOVE" #x0226)
|
||||
("LATIN SMALL LETTER A WITH DOT ABOVE" #x0227)
|
||||
("LATIN CAPITAL LETTER E WITH CEDILLA" #x0228)
|
||||
("LATIN SMALL LETTER E WITH CEDILLA" #x0229)
|
||||
("LATIN CAPITAL LETTER O WITH DIAERESIS AND MACRON" #x022A)
|
||||
("LATIN SMALL LETTER O WITH DIAERESIS AND MACRON" #x022B)
|
||||
("LATIN CAPITAL LETTER O WITH TILDE AND MACRON" #x022C)
|
||||
("LATIN SMALL LETTER O WITH TILDE AND MACRON" #x022D)
|
||||
("LATIN CAPITAL LETTER O WITH DOT ABOVE" #x022E)
|
||||
("LATIN SMALL LETTER O WITH DOT ABOVE" #x022F)
|
||||
("LATIN CAPITAL LETTER O WITH DOT ABOVE AND MACRON" #x0230)
|
||||
("LATIN SMALL LETTER O WITH DOT ABOVE AND MACRON" #x0231)
|
||||
("LATIN CAPITAL LETTER Y WITH MACRON" #x0232)
|
||||
("LATIN SMALL LETTER Y WITH MACRON" #x0233)
|
||||
))
|
||||
|
||||
;; arch-tag: d2a4e7e0-0d3a-4a29-994e-f5d0ed62cea2
|
98
etc/nxml/00250-002AF.el
Normal file
98
etc/nxml/00250-002AF.el
Normal file
|
@ -0,0 +1,98 @@
|
|||
(nxml-define-char-name-set 'ipa-extensions
|
||||
'(("LATIN SMALL LETTER TURNED A" #x0250)
|
||||
("LATIN SMALL LETTER ALPHA" #x0251)
|
||||
("LATIN SMALL LETTER TURNED ALPHA" #x0252)
|
||||
("LATIN SMALL LETTER B WITH HOOK" #x0253)
|
||||
("LATIN SMALL LETTER OPEN O" #x0254)
|
||||
("LATIN SMALL LETTER C WITH CURL" #x0255)
|
||||
("LATIN SMALL LETTER D WITH TAIL" #x0256)
|
||||
("LATIN SMALL LETTER D WITH HOOK" #x0257)
|
||||
("LATIN SMALL LETTER REVERSED E" #x0258)
|
||||
("LATIN SMALL LETTER SCHWA" #x0259)
|
||||
("LATIN SMALL LETTER SCHWA WITH HOOK" #x025A)
|
||||
("LATIN SMALL LETTER OPEN E" #x025B)
|
||||
("LATIN SMALL LETTER REVERSED OPEN E" #x025C)
|
||||
("LATIN SMALL LETTER REVERSED OPEN E WITH HOOK" #x025D)
|
||||
("LATIN SMALL LETTER CLOSED REVERSED OPEN E" #x025E)
|
||||
("LATIN SMALL LETTER DOTLESS J WITH STROKE" #x025F)
|
||||
("LATIN SMALL LETTER G WITH HOOK" #x0260)
|
||||
("LATIN SMALL LETTER SCRIPT G" #x0261)
|
||||
("LATIN LETTER SMALL CAPITAL G" #x0262)
|
||||
("LATIN SMALL LETTER GAMMA" #x0263)
|
||||
("LATIN SMALL LETTER RAMS HORN" #x0264)
|
||||
("LATIN SMALL LETTER TURNED H" #x0265)
|
||||
("LATIN SMALL LETTER H WITH HOOK" #x0266)
|
||||
("LATIN SMALL LETTER HENG WITH HOOK" #x0267)
|
||||
("LATIN SMALL LETTER I WITH STROKE" #x0268)
|
||||
("LATIN SMALL LETTER IOTA" #x0269)
|
||||
("LATIN LETTER SMALL CAPITAL I" #x026A)
|
||||
("LATIN SMALL LETTER L WITH MIDDLE TILDE" #x026B)
|
||||
("LATIN SMALL LETTER L WITH BELT" #x026C)
|
||||
("LATIN SMALL LETTER L WITH RETROFLEX HOOK" #x026D)
|
||||
("LATIN SMALL LETTER LEZH" #x026E)
|
||||
("LATIN SMALL LETTER TURNED M" #x026F)
|
||||
("LATIN SMALL LETTER TURNED M WITH LONG LEG" #x0270)
|
||||
("LATIN SMALL LETTER M WITH HOOK" #x0271)
|
||||
("LATIN SMALL LETTER N WITH LEFT HOOK" #x0272)
|
||||
("LATIN SMALL LETTER N WITH RETROFLEX HOOK" #x0273)
|
||||
("LATIN LETTER SMALL CAPITAL N" #x0274)
|
||||
("LATIN SMALL LETTER BARRED O" #x0275)
|
||||
("LATIN LETTER SMALL CAPITAL OE" #x0276)
|
||||
("LATIN SMALL LETTER CLOSED OMEGA" #x0277)
|
||||
("LATIN SMALL LETTER PHI" #x0278)
|
||||
("LATIN SMALL LETTER TURNED R" #x0279)
|
||||
("LATIN SMALL LETTER TURNED R WITH LONG LEG" #x027A)
|
||||
("LATIN SMALL LETTER TURNED R WITH HOOK" #x027B)
|
||||
("LATIN SMALL LETTER R WITH LONG LEG" #x027C)
|
||||
("LATIN SMALL LETTER R WITH TAIL" #x027D)
|
||||
("LATIN SMALL LETTER R WITH FISHHOOK" #x027E)
|
||||
("LATIN SMALL LETTER REVERSED R WITH FISHHOOK" #x027F)
|
||||
("LATIN LETTER SMALL CAPITAL R" #x0280)
|
||||
("LATIN LETTER SMALL CAPITAL INVERTED R" #x0281)
|
||||
("LATIN SMALL LETTER S WITH HOOK" #x0282)
|
||||
("LATIN SMALL LETTER ESH" #x0283)
|
||||
("LATIN SMALL LETTER DOTLESS J WITH STROKE AND HOOK" #x0284)
|
||||
("LATIN SMALL LETTER SQUAT REVERSED ESH" #x0285)
|
||||
("LATIN SMALL LETTER ESH WITH CURL" #x0286)
|
||||
("LATIN SMALL LETTER TURNED T" #x0287)
|
||||
("LATIN SMALL LETTER T WITH RETROFLEX HOOK" #x0288)
|
||||
("LATIN SMALL LETTER U BAR" #x0289)
|
||||
("LATIN SMALL LETTER UPSILON" #x028A)
|
||||
("LATIN SMALL LETTER V WITH HOOK" #x028B)
|
||||
("LATIN SMALL LETTER TURNED V" #x028C)
|
||||
("LATIN SMALL LETTER TURNED W" #x028D)
|
||||
("LATIN SMALL LETTER TURNED Y" #x028E)
|
||||
("LATIN LETTER SMALL CAPITAL Y" #x028F)
|
||||
("LATIN SMALL LETTER Z WITH RETROFLEX HOOK" #x0290)
|
||||
("LATIN SMALL LETTER Z WITH CURL" #x0291)
|
||||
("LATIN SMALL LETTER EZH" #x0292)
|
||||
("LATIN SMALL LETTER EZH WITH CURL" #x0293)
|
||||
("LATIN LETTER GLOTTAL STOP" #x0294)
|
||||
("LATIN LETTER PHARYNGEAL VOICED FRICATIVE" #x0295)
|
||||
("LATIN LETTER INVERTED GLOTTAL STOP" #x0296)
|
||||
("LATIN LETTER STRETCHED C" #x0297)
|
||||
("LATIN LETTER BILABIAL CLICK" #x0298)
|
||||
("LATIN LETTER SMALL CAPITAL B" #x0299)
|
||||
("LATIN SMALL LETTER CLOSED OPEN E" #x029A)
|
||||
("LATIN LETTER SMALL CAPITAL G WITH HOOK" #x029B)
|
||||
("LATIN LETTER SMALL CAPITAL H" #x029C)
|
||||
("LATIN SMALL LETTER J WITH CROSSED-TAIL" #x029D)
|
||||
("LATIN SMALL LETTER TURNED K" #x029E)
|
||||
("LATIN LETTER SMALL CAPITAL L" #x029F)
|
||||
("LATIN SMALL LETTER Q WITH HOOK" #x02A0)
|
||||
("LATIN LETTER GLOTTAL STOP WITH STROKE" #x02A1)
|
||||
("LATIN LETTER REVERSED GLOTTAL STOP WITH STROKE" #x02A2)
|
||||
("LATIN SMALL LETTER DZ DIGRAPH" #x02A3)
|
||||
("LATIN SMALL LETTER DEZH DIGRAPH" #x02A4)
|
||||
("LATIN SMALL LETTER DZ DIGRAPH WITH CURL" #x02A5)
|
||||
("LATIN SMALL LETTER TS DIGRAPH" #x02A6)
|
||||
("LATIN SMALL LETTER TESH DIGRAPH" #x02A7)
|
||||
("LATIN SMALL LETTER TC DIGRAPH WITH CURL" #x02A8)
|
||||
("LATIN SMALL LETTER FENG DIGRAPH" #x02A9)
|
||||
("LATIN SMALL LETTER LS DIGRAPH" #x02AA)
|
||||
("LATIN SMALL LETTER LZ DIGRAPH" #x02AB)
|
||||
("LATIN LETTER BILABIAL PERCUSSIVE" #x02AC)
|
||||
("LATIN LETTER BIDENTAL PERCUSSIVE" #x02AD)
|
||||
))
|
||||
|
||||
;; arch-tag: edc50b43-a94e-48db-91c5-0f9ea113c93c
|
67
etc/nxml/002B0-002FF.el
Normal file
67
etc/nxml/002B0-002FF.el
Normal file
|
@ -0,0 +1,67 @@
|
|||
(nxml-define-char-name-set 'spacing-modifier-letters
|
||||
'(("MODIFIER LETTER SMALL H" #x02B0)
|
||||
("MODIFIER LETTER SMALL H WITH HOOK" #x02B1)
|
||||
("MODIFIER LETTER SMALL J" #x02B2)
|
||||
("MODIFIER LETTER SMALL R" #x02B3)
|
||||
("MODIFIER LETTER SMALL TURNED R" #x02B4)
|
||||
("MODIFIER LETTER SMALL TURNED R WITH HOOK" #x02B5)
|
||||
("MODIFIER LETTER SMALL CAPITAL INVERTED R" #x02B6)
|
||||
("MODIFIER LETTER SMALL W" #x02B7)
|
||||
("MODIFIER LETTER SMALL Y" #x02B8)
|
||||
("MODIFIER LETTER PRIME" #x02B9)
|
||||
("MODIFIER LETTER DOUBLE PRIME" #x02BA)
|
||||
("MODIFIER LETTER TURNED COMMA" #x02BB)
|
||||
("MODIFIER LETTER APOSTROPHE" #x02BC)
|
||||
("MODIFIER LETTER REVERSED COMMA" #x02BD)
|
||||
("MODIFIER LETTER RIGHT HALF RING" #x02BE)
|
||||
("MODIFIER LETTER LEFT HALF RING" #x02BF)
|
||||
("MODIFIER LETTER GLOTTAL STOP" #x02C0)
|
||||
("MODIFIER LETTER REVERSED GLOTTAL STOP" #x02C1)
|
||||
("MODIFIER LETTER LEFT ARROWHEAD" #x02C2)
|
||||
("MODIFIER LETTER RIGHT ARROWHEAD" #x02C3)
|
||||
("MODIFIER LETTER UP ARROWHEAD" #x02C4)
|
||||
("MODIFIER LETTER DOWN ARROWHEAD" #x02C5)
|
||||
("MODIFIER LETTER CIRCUMFLEX ACCENT" #x02C6)
|
||||
("CARON" #x02C7)
|
||||
("MODIFIER LETTER VERTICAL LINE" #x02C8)
|
||||
("MODIFIER LETTER MACRON" #x02C9)
|
||||
("MODIFIER LETTER ACUTE ACCENT" #x02CA)
|
||||
("MODIFIER LETTER GRAVE ACCENT" #x02CB)
|
||||
("MODIFIER LETTER LOW VERTICAL LINE" #x02CC)
|
||||
("MODIFIER LETTER LOW MACRON" #x02CD)
|
||||
("MODIFIER LETTER LOW GRAVE ACCENT" #x02CE)
|
||||
("MODIFIER LETTER LOW ACUTE ACCENT" #x02CF)
|
||||
("MODIFIER LETTER TRIANGULAR COLON" #x02D0)
|
||||
("MODIFIER LETTER HALF TRIANGULAR COLON" #x02D1)
|
||||
("MODIFIER LETTER CENTRED RIGHT HALF RING" #x02D2)
|
||||
("MODIFIER LETTER CENTRED LEFT HALF RING" #x02D3)
|
||||
("MODIFIER LETTER UP TACK" #x02D4)
|
||||
("MODIFIER LETTER DOWN TACK" #x02D5)
|
||||
("MODIFIER LETTER PLUS SIGN" #x02D6)
|
||||
("MODIFIER LETTER MINUS SIGN" #x02D7)
|
||||
("BREVE" #x02D8)
|
||||
("DOT ABOVE" #x02D9)
|
||||
("RING ABOVE" #x02DA)
|
||||
("OGONEK" #x02DB)
|
||||
("SMALL TILDE" #x02DC)
|
||||
("DOUBLE ACUTE ACCENT" #x02DD)
|
||||
("MODIFIER LETTER RHOTIC HOOK" #x02DE)
|
||||
("MODIFIER LETTER CROSS ACCENT" #x02DF)
|
||||
("MODIFIER LETTER SMALL GAMMA" #x02E0)
|
||||
("MODIFIER LETTER SMALL L" #x02E1)
|
||||
("MODIFIER LETTER SMALL S" #x02E2)
|
||||
("MODIFIER LETTER SMALL X" #x02E3)
|
||||
("MODIFIER LETTER SMALL REVERSED GLOTTAL STOP" #x02E4)
|
||||
("MODIFIER LETTER EXTRA-HIGH TONE BAR" #x02E5)
|
||||
("MODIFIER LETTER HIGH TONE BAR" #x02E6)
|
||||
("MODIFIER LETTER MID TONE BAR" #x02E7)
|
||||
("MODIFIER LETTER LOW TONE BAR" #x02E8)
|
||||
("MODIFIER LETTER EXTRA-LOW TONE BAR" #x02E9)
|
||||
("MODIFIER LETTER YIN DEPARTING TONE MARK" #x02EA)
|
||||
("MODIFIER LETTER YANG DEPARTING TONE MARK" #x02EB)
|
||||
("MODIFIER LETTER VOICING" #x02EC)
|
||||
("MODIFIER LETTER UNASPIRATED" #x02ED)
|
||||
("MODIFIER LETTER DOUBLE APOSTROPHE" #x02EE)
|
||||
))
|
||||
|
||||
;; arch-tag: 5fa09061-850e-4bbe-ad44-54c57a81a461
|
100
etc/nxml/00300-0036F.el
Normal file
100
etc/nxml/00300-0036F.el
Normal file
|
@ -0,0 +1,100 @@
|
|||
(nxml-define-char-name-set 'combining-diacritical-marks
|
||||
'(("COMBINING GRAVE ACCENT" #x0300)
|
||||
("COMBINING ACUTE ACCENT" #x0301)
|
||||
("COMBINING CIRCUMFLEX ACCENT" #x0302)
|
||||
("COMBINING TILDE" #x0303)
|
||||
("COMBINING MACRON" #x0304)
|
||||
("COMBINING OVERLINE" #x0305)
|
||||
("COMBINING BREVE" #x0306)
|
||||
("COMBINING DOT ABOVE" #x0307)
|
||||
("COMBINING DIAERESIS" #x0308)
|
||||
("COMBINING HOOK ABOVE" #x0309)
|
||||
("COMBINING RING ABOVE" #x030A)
|
||||
("COMBINING DOUBLE ACUTE ACCENT" #x030B)
|
||||
("COMBINING CARON" #x030C)
|
||||
("COMBINING VERTICAL LINE ABOVE" #x030D)
|
||||
("COMBINING DOUBLE VERTICAL LINE ABOVE" #x030E)
|
||||
("COMBINING DOUBLE GRAVE ACCENT" #x030F)
|
||||
("COMBINING CANDRABINDU" #x0310)
|
||||
("COMBINING INVERTED BREVE" #x0311)
|
||||
("COMBINING TURNED COMMA ABOVE" #x0312)
|
||||
("COMBINING COMMA ABOVE" #x0313)
|
||||
("COMBINING REVERSED COMMA ABOVE" #x0314)
|
||||
("COMBINING COMMA ABOVE RIGHT" #x0315)
|
||||
("COMBINING GRAVE ACCENT BELOW" #x0316)
|
||||
("COMBINING ACUTE ACCENT BELOW" #x0317)
|
||||
("COMBINING LEFT TACK BELOW" #x0318)
|
||||
("COMBINING RIGHT TACK BELOW" #x0319)
|
||||
("COMBINING LEFT ANGLE ABOVE" #x031A)
|
||||
("COMBINING HORN" #x031B)
|
||||
("COMBINING LEFT HALF RING BELOW" #x031C)
|
||||
("COMBINING UP TACK BELOW" #x031D)
|
||||
("COMBINING DOWN TACK BELOW" #x031E)
|
||||
("COMBINING PLUS SIGN BELOW" #x031F)
|
||||
("COMBINING MINUS SIGN BELOW" #x0320)
|
||||
("COMBINING PALATALIZED HOOK BELOW" #x0321)
|
||||
("COMBINING RETROFLEX HOOK BELOW" #x0322)
|
||||
("COMBINING DOT BELOW" #x0323)
|
||||
("COMBINING DIAERESIS BELOW" #x0324)
|
||||
("COMBINING RING BELOW" #x0325)
|
||||
("COMBINING COMMA BELOW" #x0326)
|
||||
("COMBINING CEDILLA" #x0327)
|
||||
("COMBINING OGONEK" #x0328)
|
||||
("COMBINING VERTICAL LINE BELOW" #x0329)
|
||||
("COMBINING BRIDGE BELOW" #x032A)
|
||||
("COMBINING INVERTED DOUBLE ARCH BELOW" #x032B)
|
||||
("COMBINING CARON BELOW" #x032C)
|
||||
("COMBINING CIRCUMFLEX ACCENT BELOW" #x032D)
|
||||
("COMBINING BREVE BELOW" #x032E)
|
||||
("COMBINING INVERTED BREVE BELOW" #x032F)
|
||||
("COMBINING TILDE BELOW" #x0330)
|
||||
("COMBINING MACRON BELOW" #x0331)
|
||||
("COMBINING LOW LINE" #x0332)
|
||||
("COMBINING DOUBLE LOW LINE" #x0333)
|
||||
("COMBINING TILDE OVERLAY" #x0334)
|
||||
("COMBINING SHORT STROKE OVERLAY" #x0335)
|
||||
("COMBINING LONG STROKE OVERLAY" #x0336)
|
||||
("COMBINING SHORT SOLIDUS OVERLAY" #x0337)
|
||||
("COMBINING LONG SOLIDUS OVERLAY" #x0338)
|
||||
("COMBINING RIGHT HALF RING BELOW" #x0339)
|
||||
("COMBINING INVERTED BRIDGE BELOW" #x033A)
|
||||
("COMBINING SQUARE BELOW" #x033B)
|
||||
("COMBINING SEAGULL BELOW" #x033C)
|
||||
("COMBINING X ABOVE" #x033D)
|
||||
("COMBINING VERTICAL TILDE" #x033E)
|
||||
("COMBINING DOUBLE OVERLINE" #x033F)
|
||||
("COMBINING GRAVE TONE MARK" #x0340)
|
||||
("COMBINING ACUTE TONE MARK" #x0341)
|
||||
("COMBINING GREEK PERISPOMENI" #x0342)
|
||||
("COMBINING GREEK KORONIS" #x0343)
|
||||
("COMBINING GREEK DIALYTIKA TONOS" #x0344)
|
||||
("COMBINING GREEK YPOGEGRAMMENI" #x0345)
|
||||
("COMBINING BRIDGE ABOVE" #x0346)
|
||||
("COMBINING EQUALS SIGN BELOW" #x0347)
|
||||
("COMBINING DOUBLE VERTICAL LINE BELOW" #x0348)
|
||||
("COMBINING LEFT ANGLE BELOW" #x0349)
|
||||
("COMBINING NOT TILDE ABOVE" #x034A)
|
||||
("COMBINING HOMOTHETIC ABOVE" #x034B)
|
||||
("COMBINING ALMOST EQUAL TO ABOVE" #x034C)
|
||||
("COMBINING LEFT RIGHT ARROW BELOW" #x034D)
|
||||
("COMBINING UPWARDS ARROW BELOW" #x034E)
|
||||
("COMBINING GRAPHEME JOINER" #x034F)
|
||||
("COMBINING DOUBLE TILDE" #x0360)
|
||||
("COMBINING DOUBLE INVERTED BREVE" #x0361)
|
||||
("COMBINING DOUBLE RIGHTWARDS ARROW BELOW" #x0362)
|
||||
("COMBINING LATIN SMALL LETTER A" #x0363)
|
||||
("COMBINING LATIN SMALL LETTER E" #x0364)
|
||||
("COMBINING LATIN SMALL LETTER I" #x0365)
|
||||
("COMBINING LATIN SMALL LETTER O" #x0366)
|
||||
("COMBINING LATIN SMALL LETTER U" #x0367)
|
||||
("COMBINING LATIN SMALL LETTER C" #x0368)
|
||||
("COMBINING LATIN SMALL LETTER D" #x0369)
|
||||
("COMBINING LATIN SMALL LETTER H" #x036A)
|
||||
("COMBINING LATIN SMALL LETTER M" #x036B)
|
||||
("COMBINING LATIN SMALL LETTER R" #x036C)
|
||||
("COMBINING LATIN SMALL LETTER T" #x036D)
|
||||
("COMBINING LATIN SMALL LETTER V" #x036E)
|
||||
("COMBINING LATIN SMALL LETTER X" #x036F)
|
||||
))
|
||||
|
||||
;; arch-tag: a3b46b6e-38fc-4043-b7f5-92a3591e2e47
|
119
etc/nxml/00370-003FF.el
Normal file
119
etc/nxml/00370-003FF.el
Normal file
|
@ -0,0 +1,119 @@
|
|||
(nxml-define-char-name-set 'greek-and-coptic
|
||||
'(("GREEK NUMERAL SIGN" #x0374)
|
||||
("GREEK LOWER NUMERAL SIGN" #x0375)
|
||||
("GREEK YPOGEGRAMMENI" #x037A)
|
||||
("GREEK QUESTION MARK" #x037E)
|
||||
("GREEK TONOS" #x0384)
|
||||
("GREEK DIALYTIKA TONOS" #x0385)
|
||||
("GREEK CAPITAL LETTER ALPHA WITH TONOS" #x0386)
|
||||
("GREEK ANO TELEIA" #x0387)
|
||||
("GREEK CAPITAL LETTER EPSILON WITH TONOS" #x0388)
|
||||
("GREEK CAPITAL LETTER ETA WITH TONOS" #x0389)
|
||||
("GREEK CAPITAL LETTER IOTA WITH TONOS" #x038A)
|
||||
("GREEK CAPITAL LETTER OMICRON WITH TONOS" #x038C)
|
||||
("GREEK CAPITAL LETTER UPSILON WITH TONOS" #x038E)
|
||||
("GREEK CAPITAL LETTER OMEGA WITH TONOS" #x038F)
|
||||
("GREEK SMALL LETTER IOTA WITH DIALYTIKA AND TONOS" #x0390)
|
||||
("GREEK CAPITAL LETTER ALPHA" #x0391)
|
||||
("GREEK CAPITAL LETTER BETA" #x0392)
|
||||
("GREEK CAPITAL LETTER GAMMA" #x0393)
|
||||
("GREEK CAPITAL LETTER DELTA" #x0394)
|
||||
("GREEK CAPITAL LETTER EPSILON" #x0395)
|
||||
("GREEK CAPITAL LETTER ZETA" #x0396)
|
||||
("GREEK CAPITAL LETTER ETA" #x0397)
|
||||
("GREEK CAPITAL LETTER THETA" #x0398)
|
||||
("GREEK CAPITAL LETTER IOTA" #x0399)
|
||||
("GREEK CAPITAL LETTER KAPPA" #x039A)
|
||||
("GREEK CAPITAL LETTER LAMDA" #x039B)
|
||||
("GREEK CAPITAL LETTER MU" #x039C)
|
||||
("GREEK CAPITAL LETTER NU" #x039D)
|
||||
("GREEK CAPITAL LETTER XI" #x039E)
|
||||
("GREEK CAPITAL LETTER OMICRON" #x039F)
|
||||
("GREEK CAPITAL LETTER PI" #x03A0)
|
||||
("GREEK CAPITAL LETTER RHO" #x03A1)
|
||||
("GREEK CAPITAL LETTER SIGMA" #x03A3)
|
||||
("GREEK CAPITAL LETTER TAU" #x03A4)
|
||||
("GREEK CAPITAL LETTER UPSILON" #x03A5)
|
||||
("GREEK CAPITAL LETTER PHI" #x03A6)
|
||||
("GREEK CAPITAL LETTER CHI" #x03A7)
|
||||
("GREEK CAPITAL LETTER PSI" #x03A8)
|
||||
("GREEK CAPITAL LETTER OMEGA" #x03A9)
|
||||
("GREEK CAPITAL LETTER IOTA WITH DIALYTIKA" #x03AA)
|
||||
("GREEK CAPITAL LETTER UPSILON WITH DIALYTIKA" #x03AB)
|
||||
("GREEK SMALL LETTER ALPHA WITH TONOS" #x03AC)
|
||||
("GREEK SMALL LETTER EPSILON WITH TONOS" #x03AD)
|
||||
("GREEK SMALL LETTER ETA WITH TONOS" #x03AE)
|
||||
("GREEK SMALL LETTER IOTA WITH TONOS" #x03AF)
|
||||
("GREEK SMALL LETTER UPSILON WITH DIALYTIKA AND TONOS" #x03B0)
|
||||
("GREEK SMALL LETTER ALPHA" #x03B1)
|
||||
("GREEK SMALL LETTER BETA" #x03B2)
|
||||
("GREEK SMALL LETTER GAMMA" #x03B3)
|
||||
("GREEK SMALL LETTER DELTA" #x03B4)
|
||||
("GREEK SMALL LETTER EPSILON" #x03B5)
|
||||
("GREEK SMALL LETTER ZETA" #x03B6)
|
||||
("GREEK SMALL LETTER ETA" #x03B7)
|
||||
("GREEK SMALL LETTER THETA" #x03B8)
|
||||
("GREEK SMALL LETTER IOTA" #x03B9)
|
||||
("GREEK SMALL LETTER KAPPA" #x03BA)
|
||||
("GREEK SMALL LETTER LAMDA" #x03BB)
|
||||
("GREEK SMALL LETTER MU" #x03BC)
|
||||
("GREEK SMALL LETTER NU" #x03BD)
|
||||
("GREEK SMALL LETTER XI" #x03BE)
|
||||
("GREEK SMALL LETTER OMICRON" #x03BF)
|
||||
("GREEK SMALL LETTER PI" #x03C0)
|
||||
("GREEK SMALL LETTER RHO" #x03C1)
|
||||
("GREEK SMALL LETTER FINAL SIGMA" #x03C2)
|
||||
("GREEK SMALL LETTER SIGMA" #x03C3)
|
||||
("GREEK SMALL LETTER TAU" #x03C4)
|
||||
("GREEK SMALL LETTER UPSILON" #x03C5)
|
||||
("GREEK SMALL LETTER PHI" #x03C6)
|
||||
("GREEK SMALL LETTER CHI" #x03C7)
|
||||
("GREEK SMALL LETTER PSI" #x03C8)
|
||||
("GREEK SMALL LETTER OMEGA" #x03C9)
|
||||
("GREEK SMALL LETTER IOTA WITH DIALYTIKA" #x03CA)
|
||||
("GREEK SMALL LETTER UPSILON WITH DIALYTIKA" #x03CB)
|
||||
("GREEK SMALL LETTER OMICRON WITH TONOS" #x03CC)
|
||||
("GREEK SMALL LETTER UPSILON WITH TONOS" #x03CD)
|
||||
("GREEK SMALL LETTER OMEGA WITH TONOS" #x03CE)
|
||||
("GREEK BETA SYMBOL" #x03D0)
|
||||
("GREEK THETA SYMBOL" #x03D1)
|
||||
("GREEK UPSILON WITH HOOK SYMBOL" #x03D2)
|
||||
("GREEK UPSILON WITH ACUTE AND HOOK SYMBOL" #x03D3)
|
||||
("GREEK UPSILON WITH DIAERESIS AND HOOK SYMBOL" #x03D4)
|
||||
("GREEK PHI SYMBOL" #x03D5)
|
||||
("GREEK PI SYMBOL" #x03D6)
|
||||
("GREEK KAI SYMBOL" #x03D7)
|
||||
("GREEK LETTER ARCHAIC KOPPA" #x03D8)
|
||||
("GREEK SMALL LETTER ARCHAIC KOPPA" #x03D9)
|
||||
("GREEK LETTER STIGMA" #x03DA)
|
||||
("GREEK SMALL LETTER STIGMA" #x03DB)
|
||||
("GREEK LETTER DIGAMMA" #x03DC)
|
||||
("GREEK SMALL LETTER DIGAMMA" #x03DD)
|
||||
("GREEK LETTER KOPPA" #x03DE)
|
||||
("GREEK SMALL LETTER KOPPA" #x03DF)
|
||||
("GREEK LETTER SAMPI" #x03E0)
|
||||
("GREEK SMALL LETTER SAMPI" #x03E1)
|
||||
("COPTIC CAPITAL LETTER SHEI" #x03E2)
|
||||
("COPTIC SMALL LETTER SHEI" #x03E3)
|
||||
("COPTIC CAPITAL LETTER FEI" #x03E4)
|
||||
("COPTIC SMALL LETTER FEI" #x03E5)
|
||||
("COPTIC CAPITAL LETTER KHEI" #x03E6)
|
||||
("COPTIC SMALL LETTER KHEI" #x03E7)
|
||||
("COPTIC CAPITAL LETTER HORI" #x03E8)
|
||||
("COPTIC SMALL LETTER HORI" #x03E9)
|
||||
("COPTIC CAPITAL LETTER GANGIA" #x03EA)
|
||||
("COPTIC SMALL LETTER GANGIA" #x03EB)
|
||||
("COPTIC CAPITAL LETTER SHIMA" #x03EC)
|
||||
("COPTIC SMALL LETTER SHIMA" #x03ED)
|
||||
("COPTIC CAPITAL LETTER DEI" #x03EE)
|
||||
("COPTIC SMALL LETTER DEI" #x03EF)
|
||||
("GREEK KAPPA SYMBOL" #x03F0)
|
||||
("GREEK RHO SYMBOL" #x03F1)
|
||||
("GREEK LUNATE SIGMA SYMBOL" #x03F2)
|
||||
("GREEK LETTER YOT" #x03F3)
|
||||
("GREEK CAPITAL THETA SYMBOL" #x03F4)
|
||||
("GREEK LUNATE EPSILON SYMBOL" #x03F5)
|
||||
("GREEK REVERSED LUNATE EPSILON SYMBOL" #x03F6)
|
||||
))
|
||||
|
||||
;; arch-tag: 033e25a2-6f9c-4e9f-b517-be5ed38829af
|
250
etc/nxml/00400-004FF.el
Normal file
250
etc/nxml/00400-004FF.el
Normal file
|
@ -0,0 +1,250 @@
|
|||
(nxml-define-char-name-set 'cyrillic
|
||||
'(("CYRILLIC CAPITAL LETTER IE WITH GRAVE" #x0400)
|
||||
("CYRILLIC CAPITAL LETTER IO" #x0401)
|
||||
("CYRILLIC CAPITAL LETTER DJE" #x0402)
|
||||
("CYRILLIC CAPITAL LETTER GJE" #x0403)
|
||||
("CYRILLIC CAPITAL LETTER UKRAINIAN IE" #x0404)
|
||||
("CYRILLIC CAPITAL LETTER DZE" #x0405)
|
||||
("CYRILLIC CAPITAL LETTER BYELORUSSIAN-UKRAINIAN I" #x0406)
|
||||
("CYRILLIC CAPITAL LETTER YI" #x0407)
|
||||
("CYRILLIC CAPITAL LETTER JE" #x0408)
|
||||
("CYRILLIC CAPITAL LETTER LJE" #x0409)
|
||||
("CYRILLIC CAPITAL LETTER NJE" #x040A)
|
||||
("CYRILLIC CAPITAL LETTER TSHE" #x040B)
|
||||
("CYRILLIC CAPITAL LETTER KJE" #x040C)
|
||||
("CYRILLIC CAPITAL LETTER I WITH GRAVE" #x040D)
|
||||
("CYRILLIC CAPITAL LETTER SHORT U" #x040E)
|
||||
("CYRILLIC CAPITAL LETTER DZHE" #x040F)
|
||||
("CYRILLIC CAPITAL LETTER A" #x0410)
|
||||
("CYRILLIC CAPITAL LETTER BE" #x0411)
|
||||
("CYRILLIC CAPITAL LETTER VE" #x0412)
|
||||
("CYRILLIC CAPITAL LETTER GHE" #x0413)
|
||||
("CYRILLIC CAPITAL LETTER DE" #x0414)
|
||||
("CYRILLIC CAPITAL LETTER IE" #x0415)
|
||||
("CYRILLIC CAPITAL LETTER ZHE" #x0416)
|
||||
("CYRILLIC CAPITAL LETTER ZE" #x0417)
|
||||
("CYRILLIC CAPITAL LETTER I" #x0418)
|
||||
("CYRILLIC CAPITAL LETTER SHORT I" #x0419)
|
||||
("CYRILLIC CAPITAL LETTER KA" #x041A)
|
||||
("CYRILLIC CAPITAL LETTER EL" #x041B)
|
||||
("CYRILLIC CAPITAL LETTER EM" #x041C)
|
||||
("CYRILLIC CAPITAL LETTER EN" #x041D)
|
||||
("CYRILLIC CAPITAL LETTER O" #x041E)
|
||||
("CYRILLIC CAPITAL LETTER PE" #x041F)
|
||||
("CYRILLIC CAPITAL LETTER ER" #x0420)
|
||||
("CYRILLIC CAPITAL LETTER ES" #x0421)
|
||||
("CYRILLIC CAPITAL LETTER TE" #x0422)
|
||||
("CYRILLIC CAPITAL LETTER U" #x0423)
|
||||
("CYRILLIC CAPITAL LETTER EF" #x0424)
|
||||
("CYRILLIC CAPITAL LETTER HA" #x0425)
|
||||
("CYRILLIC CAPITAL LETTER TSE" #x0426)
|
||||
("CYRILLIC CAPITAL LETTER CHE" #x0427)
|
||||
("CYRILLIC CAPITAL LETTER SHA" #x0428)
|
||||
("CYRILLIC CAPITAL LETTER SHCHA" #x0429)
|
||||
("CYRILLIC CAPITAL LETTER HARD SIGN" #x042A)
|
||||
("CYRILLIC CAPITAL LETTER YERU" #x042B)
|
||||
("CYRILLIC CAPITAL LETTER SOFT SIGN" #x042C)
|
||||
("CYRILLIC CAPITAL LETTER E" #x042D)
|
||||
("CYRILLIC CAPITAL LETTER YU" #x042E)
|
||||
("CYRILLIC CAPITAL LETTER YA" #x042F)
|
||||
("CYRILLIC SMALL LETTER A" #x0430)
|
||||
("CYRILLIC SMALL LETTER BE" #x0431)
|
||||
("CYRILLIC SMALL LETTER VE" #x0432)
|
||||
("CYRILLIC SMALL LETTER GHE" #x0433)
|
||||
("CYRILLIC SMALL LETTER DE" #x0434)
|
||||
("CYRILLIC SMALL LETTER IE" #x0435)
|
||||
("CYRILLIC SMALL LETTER ZHE" #x0436)
|
||||
("CYRILLIC SMALL LETTER ZE" #x0437)
|
||||
("CYRILLIC SMALL LETTER I" #x0438)
|
||||
("CYRILLIC SMALL LETTER SHORT I" #x0439)
|
||||
("CYRILLIC SMALL LETTER KA" #x043A)
|
||||
("CYRILLIC SMALL LETTER EL" #x043B)
|
||||
("CYRILLIC SMALL LETTER EM" #x043C)
|
||||
("CYRILLIC SMALL LETTER EN" #x043D)
|
||||
("CYRILLIC SMALL LETTER O" #x043E)
|
||||
("CYRILLIC SMALL LETTER PE" #x043F)
|
||||
("CYRILLIC SMALL LETTER ER" #x0440)
|
||||
("CYRILLIC SMALL LETTER ES" #x0441)
|
||||
("CYRILLIC SMALL LETTER TE" #x0442)
|
||||
("CYRILLIC SMALL LETTER U" #x0443)
|
||||
("CYRILLIC SMALL LETTER EF" #x0444)
|
||||
("CYRILLIC SMALL LETTER HA" #x0445)
|
||||
("CYRILLIC SMALL LETTER TSE" #x0446)
|
||||
("CYRILLIC SMALL LETTER CHE" #x0447)
|
||||
("CYRILLIC SMALL LETTER SHA" #x0448)
|
||||
("CYRILLIC SMALL LETTER SHCHA" #x0449)
|
||||
("CYRILLIC SMALL LETTER HARD SIGN" #x044A)
|
||||
("CYRILLIC SMALL LETTER YERU" #x044B)
|
||||
("CYRILLIC SMALL LETTER SOFT SIGN" #x044C)
|
||||
("CYRILLIC SMALL LETTER E" #x044D)
|
||||
("CYRILLIC SMALL LETTER YU" #x044E)
|
||||
("CYRILLIC SMALL LETTER YA" #x044F)
|
||||
("CYRILLIC SMALL LETTER IE WITH GRAVE" #x0450)
|
||||
("CYRILLIC SMALL LETTER IO" #x0451)
|
||||
("CYRILLIC SMALL LETTER DJE" #x0452)
|
||||
("CYRILLIC SMALL LETTER GJE" #x0453)
|
||||
("CYRILLIC SMALL LETTER UKRAINIAN IE" #x0454)
|
||||
("CYRILLIC SMALL LETTER DZE" #x0455)
|
||||
("CYRILLIC SMALL LETTER BYELORUSSIAN-UKRAINIAN I" #x0456)
|
||||
("CYRILLIC SMALL LETTER YI" #x0457)
|
||||
("CYRILLIC SMALL LETTER JE" #x0458)
|
||||
("CYRILLIC SMALL LETTER LJE" #x0459)
|
||||
("CYRILLIC SMALL LETTER NJE" #x045A)
|
||||
("CYRILLIC SMALL LETTER TSHE" #x045B)
|
||||
("CYRILLIC SMALL LETTER KJE" #x045C)
|
||||
("CYRILLIC SMALL LETTER I WITH GRAVE" #x045D)
|
||||
("CYRILLIC SMALL LETTER SHORT U" #x045E)
|
||||
("CYRILLIC SMALL LETTER DZHE" #x045F)
|
||||
("CYRILLIC CAPITAL LETTER OMEGA" #x0460)
|
||||
("CYRILLIC SMALL LETTER OMEGA" #x0461)
|
||||
("CYRILLIC CAPITAL LETTER YAT" #x0462)
|
||||
("CYRILLIC SMALL LETTER YAT" #x0463)
|
||||
("CYRILLIC CAPITAL LETTER IOTIFIED E" #x0464)
|
||||
("CYRILLIC SMALL LETTER IOTIFIED E" #x0465)
|
||||
("CYRILLIC CAPITAL LETTER LITTLE YUS" #x0466)
|
||||
("CYRILLIC SMALL LETTER LITTLE YUS" #x0467)
|
||||
("CYRILLIC CAPITAL LETTER IOTIFIED LITTLE YUS" #x0468)
|
||||
("CYRILLIC SMALL LETTER IOTIFIED LITTLE YUS" #x0469)
|
||||
("CYRILLIC CAPITAL LETTER BIG YUS" #x046A)
|
||||
("CYRILLIC SMALL LETTER BIG YUS" #x046B)
|
||||
("CYRILLIC CAPITAL LETTER IOTIFIED BIG YUS" #x046C)
|
||||
("CYRILLIC SMALL LETTER IOTIFIED BIG YUS" #x046D)
|
||||
("CYRILLIC CAPITAL LETTER KSI" #x046E)
|
||||
("CYRILLIC SMALL LETTER KSI" #x046F)
|
||||
("CYRILLIC CAPITAL LETTER PSI" #x0470)
|
||||
("CYRILLIC SMALL LETTER PSI" #x0471)
|
||||
("CYRILLIC CAPITAL LETTER FITA" #x0472)
|
||||
("CYRILLIC SMALL LETTER FITA" #x0473)
|
||||
("CYRILLIC CAPITAL LETTER IZHITSA" #x0474)
|
||||
("CYRILLIC SMALL LETTER IZHITSA" #x0475)
|
||||
("CYRILLIC CAPITAL LETTER IZHITSA WITH DOUBLE GRAVE ACCENT" #x0476)
|
||||
("CYRILLIC SMALL LETTER IZHITSA WITH DOUBLE GRAVE ACCENT" #x0477)
|
||||
("CYRILLIC CAPITAL LETTER UK" #x0478)
|
||||
("CYRILLIC SMALL LETTER UK" #x0479)
|
||||
("CYRILLIC CAPITAL LETTER ROUND OMEGA" #x047A)
|
||||
("CYRILLIC SMALL LETTER ROUND OMEGA" #x047B)
|
||||
("CYRILLIC CAPITAL LETTER OMEGA WITH TITLO" #x047C)
|
||||
("CYRILLIC SMALL LETTER OMEGA WITH TITLO" #x047D)
|
||||
("CYRILLIC CAPITAL LETTER OT" #x047E)
|
||||
("CYRILLIC SMALL LETTER OT" #x047F)
|
||||
("CYRILLIC CAPITAL LETTER KOPPA" #x0480)
|
||||
("CYRILLIC SMALL LETTER KOPPA" #x0481)
|
||||
("CYRILLIC THOUSANDS SIGN" #x0482)
|
||||
("COMBINING CYRILLIC TITLO" #x0483)
|
||||
("COMBINING CYRILLIC PALATALIZATION" #x0484)
|
||||
("COMBINING CYRILLIC DASIA PNEUMATA" #x0485)
|
||||
("COMBINING CYRILLIC PSILI PNEUMATA" #x0486)
|
||||
("COMBINING CYRILLIC HUNDRED THOUSANDS SIGN" #x0488)
|
||||
("COMBINING CYRILLIC MILLIONS SIGN" #x0489)
|
||||
("CYRILLIC CAPITAL LETTER SHORT I WITH TAIL" #x048A)
|
||||
("CYRILLIC SMALL LETTER SHORT I WITH TAIL" #x048B)
|
||||
("CYRILLIC CAPITAL LETTER SEMISOFT SIGN" #x048C)
|
||||
("CYRILLIC SMALL LETTER SEMISOFT SIGN" #x048D)
|
||||
("CYRILLIC CAPITAL LETTER ER WITH TICK" #x048E)
|
||||
("CYRILLIC SMALL LETTER ER WITH TICK" #x048F)
|
||||
("CYRILLIC CAPITAL LETTER GHE WITH UPTURN" #x0490)
|
||||
("CYRILLIC SMALL LETTER GHE WITH UPTURN" #x0491)
|
||||
("CYRILLIC CAPITAL LETTER GHE WITH STROKE" #x0492)
|
||||
("CYRILLIC SMALL LETTER GHE WITH STROKE" #x0493)
|
||||
("CYRILLIC CAPITAL LETTER GHE WITH MIDDLE HOOK" #x0494)
|
||||
("CYRILLIC SMALL LETTER GHE WITH MIDDLE HOOK" #x0495)
|
||||
("CYRILLIC CAPITAL LETTER ZHE WITH DESCENDER" #x0496)
|
||||
("CYRILLIC SMALL LETTER ZHE WITH DESCENDER" #x0497)
|
||||
("CYRILLIC CAPITAL LETTER ZE WITH DESCENDER" #x0498)
|
||||
("CYRILLIC SMALL LETTER ZE WITH DESCENDER" #x0499)
|
||||
("CYRILLIC CAPITAL LETTER KA WITH DESCENDER" #x049A)
|
||||
("CYRILLIC SMALL LETTER KA WITH DESCENDER" #x049B)
|
||||
("CYRILLIC CAPITAL LETTER KA WITH VERTICAL STROKE" #x049C)
|
||||
("CYRILLIC SMALL LETTER KA WITH VERTICAL STROKE" #x049D)
|
||||
("CYRILLIC CAPITAL LETTER KA WITH STROKE" #x049E)
|
||||
("CYRILLIC SMALL LETTER KA WITH STROKE" #x049F)
|
||||
("CYRILLIC CAPITAL LETTER BASHKIR KA" #x04A0)
|
||||
("CYRILLIC SMALL LETTER BASHKIR KA" #x04A1)
|
||||
("CYRILLIC CAPITAL LETTER EN WITH DESCENDER" #x04A2)
|
||||
("CYRILLIC SMALL LETTER EN WITH DESCENDER" #x04A3)
|
||||
("CYRILLIC CAPITAL LIGATURE EN GHE" #x04A4)
|
||||
("CYRILLIC SMALL LIGATURE EN GHE" #x04A5)
|
||||
("CYRILLIC CAPITAL LETTER PE WITH MIDDLE HOOK" #x04A6)
|
||||
("CYRILLIC SMALL LETTER PE WITH MIDDLE HOOK" #x04A7)
|
||||
("CYRILLIC CAPITAL LETTER ABKHASIAN HA" #x04A8)
|
||||
("CYRILLIC SMALL LETTER ABKHASIAN HA" #x04A9)
|
||||
("CYRILLIC CAPITAL LETTER ES WITH DESCENDER" #x04AA)
|
||||
("CYRILLIC SMALL LETTER ES WITH DESCENDER" #x04AB)
|
||||
("CYRILLIC CAPITAL LETTER TE WITH DESCENDER" #x04AC)
|
||||
("CYRILLIC SMALL LETTER TE WITH DESCENDER" #x04AD)
|
||||
("CYRILLIC CAPITAL LETTER STRAIGHT U" #x04AE)
|
||||
("CYRILLIC SMALL LETTER STRAIGHT U" #x04AF)
|
||||
("CYRILLIC CAPITAL LETTER STRAIGHT U WITH STROKE" #x04B0)
|
||||
("CYRILLIC SMALL LETTER STRAIGHT U WITH STROKE" #x04B1)
|
||||
("CYRILLIC CAPITAL LETTER HA WITH DESCENDER" #x04B2)
|
||||
("CYRILLIC SMALL LETTER HA WITH DESCENDER" #x04B3)
|
||||
("CYRILLIC CAPITAL LIGATURE TE TSE" #x04B4)
|
||||
("CYRILLIC SMALL LIGATURE TE TSE" #x04B5)
|
||||
("CYRILLIC CAPITAL LETTER CHE WITH DESCENDER" #x04B6)
|
||||
("CYRILLIC SMALL LETTER CHE WITH DESCENDER" #x04B7)
|
||||
("CYRILLIC CAPITAL LETTER CHE WITH VERTICAL STROKE" #x04B8)
|
||||
("CYRILLIC SMALL LETTER CHE WITH VERTICAL STROKE" #x04B9)
|
||||
("CYRILLIC CAPITAL LETTER SHHA" #x04BA)
|
||||
("CYRILLIC SMALL LETTER SHHA" #x04BB)
|
||||
("CYRILLIC CAPITAL LETTER ABKHASIAN CHE" #x04BC)
|
||||
("CYRILLIC SMALL LETTER ABKHASIAN CHE" #x04BD)
|
||||
("CYRILLIC CAPITAL LETTER ABKHASIAN CHE WITH DESCENDER" #x04BE)
|
||||
("CYRILLIC SMALL LETTER ABKHASIAN CHE WITH DESCENDER" #x04BF)
|
||||
("CYRILLIC LETTER PALOCHKA" #x04C0)
|
||||
("CYRILLIC CAPITAL LETTER ZHE WITH BREVE" #x04C1)
|
||||
("CYRILLIC SMALL LETTER ZHE WITH BREVE" #x04C2)
|
||||
("CYRILLIC CAPITAL LETTER KA WITH HOOK" #x04C3)
|
||||
("CYRILLIC SMALL LETTER KA WITH HOOK" #x04C4)
|
||||
("CYRILLIC CAPITAL LETTER EL WITH TAIL" #x04C5)
|
||||
("CYRILLIC SMALL LETTER EL WITH TAIL" #x04C6)
|
||||
("CYRILLIC CAPITAL LETTER EN WITH HOOK" #x04C7)
|
||||
("CYRILLIC SMALL LETTER EN WITH HOOK" #x04C8)
|
||||
("CYRILLIC CAPITAL LETTER EN WITH TAIL" #x04C9)
|
||||
("CYRILLIC SMALL LETTER EN WITH TAIL" #x04CA)
|
||||
("CYRILLIC CAPITAL LETTER KHAKASSIAN CHE" #x04CB)
|
||||
("CYRILLIC SMALL LETTER KHAKASSIAN CHE" #x04CC)
|
||||
("CYRILLIC CAPITAL LETTER EM WITH TAIL" #x04CD)
|
||||
("CYRILLIC SMALL LETTER EM WITH TAIL" #x04CE)
|
||||
("CYRILLIC CAPITAL LETTER A WITH BREVE" #x04D0)
|
||||
("CYRILLIC SMALL LETTER A WITH BREVE" #x04D1)
|
||||
("CYRILLIC CAPITAL LETTER A WITH DIAERESIS" #x04D2)
|
||||
("CYRILLIC SMALL LETTER A WITH DIAERESIS" #x04D3)
|
||||
("CYRILLIC CAPITAL LIGATURE A IE" #x04D4)
|
||||
("CYRILLIC SMALL LIGATURE A IE" #x04D5)
|
||||
("CYRILLIC CAPITAL LETTER IE WITH BREVE" #x04D6)
|
||||
("CYRILLIC SMALL LETTER IE WITH BREVE" #x04D7)
|
||||
("CYRILLIC CAPITAL LETTER SCHWA" #x04D8)
|
||||
("CYRILLIC SMALL LETTER SCHWA" #x04D9)
|
||||
("CYRILLIC CAPITAL LETTER SCHWA WITH DIAERESIS" #x04DA)
|
||||
("CYRILLIC SMALL LETTER SCHWA WITH DIAERESIS" #x04DB)
|
||||
("CYRILLIC CAPITAL LETTER ZHE WITH DIAERESIS" #x04DC)
|
||||
("CYRILLIC SMALL LETTER ZHE WITH DIAERESIS" #x04DD)
|
||||
("CYRILLIC CAPITAL LETTER ZE WITH DIAERESIS" #x04DE)
|
||||
("CYRILLIC SMALL LETTER ZE WITH DIAERESIS" #x04DF)
|
||||
("CYRILLIC CAPITAL LETTER ABKHASIAN DZE" #x04E0)
|
||||
("CYRILLIC SMALL LETTER ABKHASIAN DZE" #x04E1)
|
||||
("CYRILLIC CAPITAL LETTER I WITH MACRON" #x04E2)
|
||||
("CYRILLIC SMALL LETTER I WITH MACRON" #x04E3)
|
||||
("CYRILLIC CAPITAL LETTER I WITH DIAERESIS" #x04E4)
|
||||
("CYRILLIC SMALL LETTER I WITH DIAERESIS" #x04E5)
|
||||
("CYRILLIC CAPITAL LETTER O WITH DIAERESIS" #x04E6)
|
||||
("CYRILLIC SMALL LETTER O WITH DIAERESIS" #x04E7)
|
||||
("CYRILLIC CAPITAL LETTER BARRED O" #x04E8)
|
||||
("CYRILLIC SMALL LETTER BARRED O" #x04E9)
|
||||
("CYRILLIC CAPITAL LETTER BARRED O WITH DIAERESIS" #x04EA)
|
||||
("CYRILLIC SMALL LETTER BARRED O WITH DIAERESIS" #x04EB)
|
||||
("CYRILLIC CAPITAL LETTER E WITH DIAERESIS" #x04EC)
|
||||
("CYRILLIC SMALL LETTER E WITH DIAERESIS" #x04ED)
|
||||
("CYRILLIC CAPITAL LETTER U WITH MACRON" #x04EE)
|
||||
("CYRILLIC SMALL LETTER U WITH MACRON" #x04EF)
|
||||
("CYRILLIC CAPITAL LETTER U WITH DIAERESIS" #x04F0)
|
||||
("CYRILLIC SMALL LETTER U WITH DIAERESIS" #x04F1)
|
||||
("CYRILLIC CAPITAL LETTER U WITH DOUBLE ACUTE" #x04F2)
|
||||
("CYRILLIC SMALL LETTER U WITH DOUBLE ACUTE" #x04F3)
|
||||
("CYRILLIC CAPITAL LETTER CHE WITH DIAERESIS" #x04F4)
|
||||
("CYRILLIC SMALL LETTER CHE WITH DIAERESIS" #x04F5)
|
||||
("CYRILLIC CAPITAL LETTER YERU WITH DIAERESIS" #x04F8)
|
||||
("CYRILLIC SMALL LETTER YERU WITH DIAERESIS" #x04F9)
|
||||
))
|
||||
|
||||
;; arch-tag: 9cd8c4dd-3386-4c0a-b1dd-984efa12d958
|
20
etc/nxml/00500-0052F.el
Normal file
20
etc/nxml/00500-0052F.el
Normal file
|
@ -0,0 +1,20 @@
|
|||
(nxml-define-char-name-set 'cyrillic-supplementary
|
||||
'(("CYRILLIC CAPITAL LETTER KOMI DE" #x0500)
|
||||
("CYRILLIC SMALL LETTER KOMI DE" #x0501)
|
||||
("CYRILLIC CAPITAL LETTER KOMI DJE" #x0502)
|
||||
("CYRILLIC SMALL LETTER KOMI DJE" #x0503)
|
||||
("CYRILLIC CAPITAL LETTER KOMI ZJE" #x0504)
|
||||
("CYRILLIC SMALL LETTER KOMI ZJE" #x0505)
|
||||
("CYRILLIC CAPITAL LETTER KOMI DZJE" #x0506)
|
||||
("CYRILLIC SMALL LETTER KOMI DZJE" #x0507)
|
||||
("CYRILLIC CAPITAL LETTER KOMI LJE" #x0508)
|
||||
("CYRILLIC SMALL LETTER KOMI LJE" #x0509)
|
||||
("CYRILLIC CAPITAL LETTER KOMI NJE" #x050A)
|
||||
("CYRILLIC SMALL LETTER KOMI NJE" #x050B)
|
||||
("CYRILLIC CAPITAL LETTER KOMI SJE" #x050C)
|
||||
("CYRILLIC SMALL LETTER KOMI SJE" #x050D)
|
||||
("CYRILLIC CAPITAL LETTER KOMI TJE" #x050E)
|
||||
("CYRILLIC SMALL LETTER KOMI TJE" #x050F)
|
||||
))
|
||||
|
||||
;; arch-tag: 3ae51d36-3921-4ec5-b6be-3e9c895be9f3
|
90
etc/nxml/00530-0058F.el
Normal file
90
etc/nxml/00530-0058F.el
Normal file
|
@ -0,0 +1,90 @@
|
|||
(nxml-define-char-name-set 'armenian
|
||||
'(("ARMENIAN CAPITAL LETTER AYB" #x0531)
|
||||
("ARMENIAN CAPITAL LETTER BEN" #x0532)
|
||||
("ARMENIAN CAPITAL LETTER GIM" #x0533)
|
||||
("ARMENIAN CAPITAL LETTER DA" #x0534)
|
||||
("ARMENIAN CAPITAL LETTER ECH" #x0535)
|
||||
("ARMENIAN CAPITAL LETTER ZA" #x0536)
|
||||
("ARMENIAN CAPITAL LETTER EH" #x0537)
|
||||
("ARMENIAN CAPITAL LETTER ET" #x0538)
|
||||
("ARMENIAN CAPITAL LETTER TO" #x0539)
|
||||
("ARMENIAN CAPITAL LETTER ZHE" #x053A)
|
||||
("ARMENIAN CAPITAL LETTER INI" #x053B)
|
||||
("ARMENIAN CAPITAL LETTER LIWN" #x053C)
|
||||
("ARMENIAN CAPITAL LETTER XEH" #x053D)
|
||||
("ARMENIAN CAPITAL LETTER CA" #x053E)
|
||||
("ARMENIAN CAPITAL LETTER KEN" #x053F)
|
||||
("ARMENIAN CAPITAL LETTER HO" #x0540)
|
||||
("ARMENIAN CAPITAL LETTER JA" #x0541)
|
||||
("ARMENIAN CAPITAL LETTER GHAD" #x0542)
|
||||
("ARMENIAN CAPITAL LETTER CHEH" #x0543)
|
||||
("ARMENIAN CAPITAL LETTER MEN" #x0544)
|
||||
("ARMENIAN CAPITAL LETTER YI" #x0545)
|
||||
("ARMENIAN CAPITAL LETTER NOW" #x0546)
|
||||
("ARMENIAN CAPITAL LETTER SHA" #x0547)
|
||||
("ARMENIAN CAPITAL LETTER VO" #x0548)
|
||||
("ARMENIAN CAPITAL LETTER CHA" #x0549)
|
||||
("ARMENIAN CAPITAL LETTER PEH" #x054A)
|
||||
("ARMENIAN CAPITAL LETTER JHEH" #x054B)
|
||||
("ARMENIAN CAPITAL LETTER RA" #x054C)
|
||||
("ARMENIAN CAPITAL LETTER SEH" #x054D)
|
||||
("ARMENIAN CAPITAL LETTER VEW" #x054E)
|
||||
("ARMENIAN CAPITAL LETTER TIWN" #x054F)
|
||||
("ARMENIAN CAPITAL LETTER REH" #x0550)
|
||||
("ARMENIAN CAPITAL LETTER CO" #x0551)
|
||||
("ARMENIAN CAPITAL LETTER YIWN" #x0552)
|
||||
("ARMENIAN CAPITAL LETTER PIWR" #x0553)
|
||||
("ARMENIAN CAPITAL LETTER KEH" #x0554)
|
||||
("ARMENIAN CAPITAL LETTER OH" #x0555)
|
||||
("ARMENIAN CAPITAL LETTER FEH" #x0556)
|
||||
("ARMENIAN MODIFIER LETTER LEFT HALF RING" #x0559)
|
||||
("ARMENIAN APOSTROPHE" #x055A)
|
||||
("ARMENIAN EMPHASIS MARK" #x055B)
|
||||
("ARMENIAN EXCLAMATION MARK" #x055C)
|
||||
("ARMENIAN COMMA" #x055D)
|
||||
("ARMENIAN QUESTION MARK" #x055E)
|
||||
("ARMENIAN ABBREVIATION MARK" #x055F)
|
||||
("ARMENIAN SMALL LETTER AYB" #x0561)
|
||||
("ARMENIAN SMALL LETTER BEN" #x0562)
|
||||
("ARMENIAN SMALL LETTER GIM" #x0563)
|
||||
("ARMENIAN SMALL LETTER DA" #x0564)
|
||||
("ARMENIAN SMALL LETTER ECH" #x0565)
|
||||
("ARMENIAN SMALL LETTER ZA" #x0566)
|
||||
("ARMENIAN SMALL LETTER EH" #x0567)
|
||||
("ARMENIAN SMALL LETTER ET" #x0568)
|
||||
("ARMENIAN SMALL LETTER TO" #x0569)
|
||||
("ARMENIAN SMALL LETTER ZHE" #x056A)
|
||||
("ARMENIAN SMALL LETTER INI" #x056B)
|
||||
("ARMENIAN SMALL LETTER LIWN" #x056C)
|
||||
("ARMENIAN SMALL LETTER XEH" #x056D)
|
||||
("ARMENIAN SMALL LETTER CA" #x056E)
|
||||
("ARMENIAN SMALL LETTER KEN" #x056F)
|
||||
("ARMENIAN SMALL LETTER HO" #x0570)
|
||||
("ARMENIAN SMALL LETTER JA" #x0571)
|
||||
("ARMENIAN SMALL LETTER GHAD" #x0572)
|
||||
("ARMENIAN SMALL LETTER CHEH" #x0573)
|
||||
("ARMENIAN SMALL LETTER MEN" #x0574)
|
||||
("ARMENIAN SMALL LETTER YI" #x0575)
|
||||
("ARMENIAN SMALL LETTER NOW" #x0576)
|
||||
("ARMENIAN SMALL LETTER SHA" #x0577)
|
||||
("ARMENIAN SMALL LETTER VO" #x0578)
|
||||
("ARMENIAN SMALL LETTER CHA" #x0579)
|
||||
("ARMENIAN SMALL LETTER PEH" #x057A)
|
||||
("ARMENIAN SMALL LETTER JHEH" #x057B)
|
||||
("ARMENIAN SMALL LETTER RA" #x057C)
|
||||
("ARMENIAN SMALL LETTER SEH" #x057D)
|
||||
("ARMENIAN SMALL LETTER VEW" #x057E)
|
||||
("ARMENIAN SMALL LETTER TIWN" #x057F)
|
||||
("ARMENIAN SMALL LETTER REH" #x0580)
|
||||
("ARMENIAN SMALL LETTER CO" #x0581)
|
||||
("ARMENIAN SMALL LETTER YIWN" #x0582)
|
||||
("ARMENIAN SMALL LETTER PIWR" #x0583)
|
||||
("ARMENIAN SMALL LETTER KEH" #x0584)
|
||||
("ARMENIAN SMALL LETTER OH" #x0585)
|
||||
("ARMENIAN SMALL LETTER FEH" #x0586)
|
||||
("ARMENIAN SMALL LIGATURE ECH YIWN" #x0587)
|
||||
("ARMENIAN FULL STOP" #x0589)
|
||||
("ARMENIAN HYPHEN" #x058A)
|
||||
))
|
||||
|
||||
;; arch-tag: 7b3d705a-d060-42de-a918-ff39dbe5d276
|
86
etc/nxml/00590-005FF.el
Normal file
86
etc/nxml/00590-005FF.el
Normal file
|
@ -0,0 +1,86 @@
|
|||
(nxml-define-char-name-set 'hebrew
|
||||
'(("HEBREW ACCENT ETNAHTA" #x0591)
|
||||
("HEBREW ACCENT SEGOL" #x0592)
|
||||
("HEBREW ACCENT SHALSHELET" #x0593)
|
||||
("HEBREW ACCENT ZAQEF QATAN" #x0594)
|
||||
("HEBREW ACCENT ZAQEF GADOL" #x0595)
|
||||
("HEBREW ACCENT TIPEHA" #x0596)
|
||||
("HEBREW ACCENT REVIA" #x0597)
|
||||
("HEBREW ACCENT ZARQA" #x0598)
|
||||
("HEBREW ACCENT PASHTA" #x0599)
|
||||
("HEBREW ACCENT YETIV" #x059A)
|
||||
("HEBREW ACCENT TEVIR" #x059B)
|
||||
("HEBREW ACCENT GERESH" #x059C)
|
||||
("HEBREW ACCENT GERESH MUQDAM" #x059D)
|
||||
("HEBREW ACCENT GERSHAYIM" #x059E)
|
||||
("HEBREW ACCENT QARNEY PARA" #x059F)
|
||||
("HEBREW ACCENT TELISHA GEDOLA" #x05A0)
|
||||
("HEBREW ACCENT PAZER" #x05A1)
|
||||
("HEBREW ACCENT MUNAH" #x05A3)
|
||||
("HEBREW ACCENT MAHAPAKH" #x05A4)
|
||||
("HEBREW ACCENT MERKHA" #x05A5)
|
||||
("HEBREW ACCENT MERKHA KEFULA" #x05A6)
|
||||
("HEBREW ACCENT DARGA" #x05A7)
|
||||
("HEBREW ACCENT QADMA" #x05A8)
|
||||
("HEBREW ACCENT TELISHA QETANA" #x05A9)
|
||||
("HEBREW ACCENT YERAH BEN YOMO" #x05AA)
|
||||
("HEBREW ACCENT OLE" #x05AB)
|
||||
("HEBREW ACCENT ILUY" #x05AC)
|
||||
("HEBREW ACCENT DEHI" #x05AD)
|
||||
("HEBREW ACCENT ZINOR" #x05AE)
|
||||
("HEBREW MARK MASORA CIRCLE" #x05AF)
|
||||
("HEBREW POINT SHEVA" #x05B0)
|
||||
("HEBREW POINT HATAF SEGOL" #x05B1)
|
||||
("HEBREW POINT HATAF PATAH" #x05B2)
|
||||
("HEBREW POINT HATAF QAMATS" #x05B3)
|
||||
("HEBREW POINT HIRIQ" #x05B4)
|
||||
("HEBREW POINT TSERE" #x05B5)
|
||||
("HEBREW POINT SEGOL" #x05B6)
|
||||
("HEBREW POINT PATAH" #x05B7)
|
||||
("HEBREW POINT QAMATS" #x05B8)
|
||||
("HEBREW POINT HOLAM" #x05B9)
|
||||
("HEBREW POINT QUBUTS" #x05BB)
|
||||
("HEBREW POINT DAGESH OR MAPIQ" #x05BC)
|
||||
("HEBREW POINT METEG" #x05BD)
|
||||
("HEBREW PUNCTUATION MAQAF" #x05BE)
|
||||
("HEBREW POINT RAFE" #x05BF)
|
||||
("HEBREW PUNCTUATION PASEQ" #x05C0)
|
||||
("HEBREW POINT SHIN DOT" #x05C1)
|
||||
("HEBREW POINT SIN DOT" #x05C2)
|
||||
("HEBREW PUNCTUATION SOF PASUQ" #x05C3)
|
||||
("HEBREW MARK UPPER DOT" #x05C4)
|
||||
("HEBREW LETTER ALEF" #x05D0)
|
||||
("HEBREW LETTER BET" #x05D1)
|
||||
("HEBREW LETTER GIMEL" #x05D2)
|
||||
("HEBREW LETTER DALET" #x05D3)
|
||||
("HEBREW LETTER HE" #x05D4)
|
||||
("HEBREW LETTER VAV" #x05D5)
|
||||
("HEBREW LETTER ZAYIN" #x05D6)
|
||||
("HEBREW LETTER HET" #x05D7)
|
||||
("HEBREW LETTER TET" #x05D8)
|
||||
("HEBREW LETTER YOD" #x05D9)
|
||||
("HEBREW LETTER FINAL KAF" #x05DA)
|
||||
("HEBREW LETTER KAF" #x05DB)
|
||||
("HEBREW LETTER LAMED" #x05DC)
|
||||
("HEBREW LETTER FINAL MEM" #x05DD)
|
||||
("HEBREW LETTER MEM" #x05DE)
|
||||
("HEBREW LETTER FINAL NUN" #x05DF)
|
||||
("HEBREW LETTER NUN" #x05E0)
|
||||
("HEBREW LETTER SAMEKH" #x05E1)
|
||||
("HEBREW LETTER AYIN" #x05E2)
|
||||
("HEBREW LETTER FINAL PE" #x05E3)
|
||||
("HEBREW LETTER PE" #x05E4)
|
||||
("HEBREW LETTER FINAL TSADI" #x05E5)
|
||||
("HEBREW LETTER TSADI" #x05E6)
|
||||
("HEBREW LETTER QOF" #x05E7)
|
||||
("HEBREW LETTER RESH" #x05E8)
|
||||
("HEBREW LETTER SHIN" #x05E9)
|
||||
("HEBREW LETTER TAV" #x05EA)
|
||||
("HEBREW LIGATURE YIDDISH DOUBLE VAV" #x05F0)
|
||||
("HEBREW LIGATURE YIDDISH VAV YOD" #x05F1)
|
||||
("HEBREW LIGATURE YIDDISH DOUBLE YOD" #x05F2)
|
||||
("HEBREW PUNCTUATION GERESH" #x05F3)
|
||||
("HEBREW PUNCTUATION GERSHAYIM" #x05F4)
|
||||
))
|
||||
|
||||
;; arch-tag: 262da37d-1065-4dfd-b6e4-a8259a780caf
|
212
etc/nxml/00600-006FF.el
Normal file
212
etc/nxml/00600-006FF.el
Normal file
|
@ -0,0 +1,212 @@
|
|||
(nxml-define-char-name-set 'arabic
|
||||
'(("ARABIC COMMA" #x060C)
|
||||
("ARABIC SEMICOLON" #x061B)
|
||||
("ARABIC QUESTION MARK" #x061F)
|
||||
("ARABIC LETTER HAMZA" #x0621)
|
||||
("ARABIC LETTER ALEF WITH MADDA ABOVE" #x0622)
|
||||
("ARABIC LETTER ALEF WITH HAMZA ABOVE" #x0623)
|
||||
("ARABIC LETTER WAW WITH HAMZA ABOVE" #x0624)
|
||||
("ARABIC LETTER ALEF WITH HAMZA BELOW" #x0625)
|
||||
("ARABIC LETTER YEH WITH HAMZA ABOVE" #x0626)
|
||||
("ARABIC LETTER ALEF" #x0627)
|
||||
("ARABIC LETTER BEH" #x0628)
|
||||
("ARABIC LETTER TEH MARBUTA" #x0629)
|
||||
("ARABIC LETTER TEH" #x062A)
|
||||
("ARABIC LETTER THEH" #x062B)
|
||||
("ARABIC LETTER JEEM" #x062C)
|
||||
("ARABIC LETTER HAH" #x062D)
|
||||
("ARABIC LETTER KHAH" #x062E)
|
||||
("ARABIC LETTER DAL" #x062F)
|
||||
("ARABIC LETTER THAL" #x0630)
|
||||
("ARABIC LETTER REH" #x0631)
|
||||
("ARABIC LETTER ZAIN" #x0632)
|
||||
("ARABIC LETTER SEEN" #x0633)
|
||||
("ARABIC LETTER SHEEN" #x0634)
|
||||
("ARABIC LETTER SAD" #x0635)
|
||||
("ARABIC LETTER DAD" #x0636)
|
||||
("ARABIC LETTER TAH" #x0637)
|
||||
("ARABIC LETTER ZAH" #x0638)
|
||||
("ARABIC LETTER AIN" #x0639)
|
||||
("ARABIC LETTER GHAIN" #x063A)
|
||||
("ARABIC TATWEEL" #x0640)
|
||||
("ARABIC LETTER FEH" #x0641)
|
||||
("ARABIC LETTER QAF" #x0642)
|
||||
("ARABIC LETTER KAF" #x0643)
|
||||
("ARABIC LETTER LAM" #x0644)
|
||||
("ARABIC LETTER MEEM" #x0645)
|
||||
("ARABIC LETTER NOON" #x0646)
|
||||
("ARABIC LETTER HEH" #x0647)
|
||||
("ARABIC LETTER WAW" #x0648)
|
||||
("ARABIC LETTER ALEF MAKSURA" #x0649)
|
||||
("ARABIC LETTER YEH" #x064A)
|
||||
("ARABIC FATHATAN" #x064B)
|
||||
("ARABIC DAMMATAN" #x064C)
|
||||
("ARABIC KASRATAN" #x064D)
|
||||
("ARABIC FATHA" #x064E)
|
||||
("ARABIC DAMMA" #x064F)
|
||||
("ARABIC KASRA" #x0650)
|
||||
("ARABIC SHADDA" #x0651)
|
||||
("ARABIC SUKUN" #x0652)
|
||||
("ARABIC MADDAH ABOVE" #x0653)
|
||||
("ARABIC HAMZA ABOVE" #x0654)
|
||||
("ARABIC HAMZA BELOW" #x0655)
|
||||
("ARABIC-INDIC DIGIT ZERO" #x0660)
|
||||
("ARABIC-INDIC DIGIT ONE" #x0661)
|
||||
("ARABIC-INDIC DIGIT TWO" #x0662)
|
||||
("ARABIC-INDIC DIGIT THREE" #x0663)
|
||||
("ARABIC-INDIC DIGIT FOUR" #x0664)
|
||||
("ARABIC-INDIC DIGIT FIVE" #x0665)
|
||||
("ARABIC-INDIC DIGIT SIX" #x0666)
|
||||
("ARABIC-INDIC DIGIT SEVEN" #x0667)
|
||||
("ARABIC-INDIC DIGIT EIGHT" #x0668)
|
||||
("ARABIC-INDIC DIGIT NINE" #x0669)
|
||||
("ARABIC PERCENT SIGN" #x066A)
|
||||
("ARABIC DECIMAL SEPARATOR" #x066B)
|
||||
("ARABIC THOUSANDS SEPARATOR" #x066C)
|
||||
("ARABIC FIVE POINTED STAR" #x066D)
|
||||
("ARABIC LETTER DOTLESS BEH" #x066E)
|
||||
("ARABIC LETTER DOTLESS QAF" #x066F)
|
||||
("ARABIC LETTER SUPERSCRIPT ALEF" #x0670)
|
||||
("ARABIC LETTER ALEF WASLA" #x0671)
|
||||
("ARABIC LETTER ALEF WITH WAVY HAMZA ABOVE" #x0672)
|
||||
("ARABIC LETTER ALEF WITH WAVY HAMZA BELOW" #x0673)
|
||||
("ARABIC LETTER HIGH HAMZA" #x0674)
|
||||
("ARABIC LETTER HIGH HAMZA ALEF" #x0675)
|
||||
("ARABIC LETTER HIGH HAMZA WAW" #x0676)
|
||||
("ARABIC LETTER U WITH HAMZA ABOVE" #x0677)
|
||||
("ARABIC LETTER HIGH HAMZA YEH" #x0678)
|
||||
("ARABIC LETTER TTEH" #x0679)
|
||||
("ARABIC LETTER TTEHEH" #x067A)
|
||||
("ARABIC LETTER BEEH" #x067B)
|
||||
("ARABIC LETTER TEH WITH RING" #x067C)
|
||||
("ARABIC LETTER TEH WITH THREE DOTS ABOVE DOWNWARDS" #x067D)
|
||||
("ARABIC LETTER PEH" #x067E)
|
||||
("ARABIC LETTER TEHEH" #x067F)
|
||||
("ARABIC LETTER BEHEH" #x0680)
|
||||
("ARABIC LETTER HAH WITH HAMZA ABOVE" #x0681)
|
||||
("ARABIC LETTER HAH WITH TWO DOTS VERTICAL ABOVE" #x0682)
|
||||
("ARABIC LETTER NYEH" #x0683)
|
||||
("ARABIC LETTER DYEH" #x0684)
|
||||
("ARABIC LETTER HAH WITH THREE DOTS ABOVE" #x0685)
|
||||
("ARABIC LETTER TCHEH" #x0686)
|
||||
("ARABIC LETTER TCHEHEH" #x0687)
|
||||
("ARABIC LETTER DDAL" #x0688)
|
||||
("ARABIC LETTER DAL WITH RING" #x0689)
|
||||
("ARABIC LETTER DAL WITH DOT BELOW" #x068A)
|
||||
("ARABIC LETTER DAL WITH DOT BELOW AND SMALL TAH" #x068B)
|
||||
("ARABIC LETTER DAHAL" #x068C)
|
||||
("ARABIC LETTER DDAHAL" #x068D)
|
||||
("ARABIC LETTER DUL" #x068E)
|
||||
("ARABIC LETTER DAL WITH THREE DOTS ABOVE DOWNWARDS" #x068F)
|
||||
("ARABIC LETTER DAL WITH FOUR DOTS ABOVE" #x0690)
|
||||
("ARABIC LETTER RREH" #x0691)
|
||||
("ARABIC LETTER REH WITH SMALL V" #x0692)
|
||||
("ARABIC LETTER REH WITH RING" #x0693)
|
||||
("ARABIC LETTER REH WITH DOT BELOW" #x0694)
|
||||
("ARABIC LETTER REH WITH SMALL V BELOW" #x0695)
|
||||
("ARABIC LETTER REH WITH DOT BELOW AND DOT ABOVE" #x0696)
|
||||
("ARABIC LETTER REH WITH TWO DOTS ABOVE" #x0697)
|
||||
("ARABIC LETTER JEH" #x0698)
|
||||
("ARABIC LETTER REH WITH FOUR DOTS ABOVE" #x0699)
|
||||
("ARABIC LETTER SEEN WITH DOT BELOW AND DOT ABOVE" #x069A)
|
||||
("ARABIC LETTER SEEN WITH THREE DOTS BELOW" #x069B)
|
||||
("ARABIC LETTER SEEN WITH THREE DOTS BELOW AND THREE DOTS ABOVE" #x069C)
|
||||
("ARABIC LETTER SAD WITH TWO DOTS BELOW" #x069D)
|
||||
("ARABIC LETTER SAD WITH THREE DOTS ABOVE" #x069E)
|
||||
("ARABIC LETTER TAH WITH THREE DOTS ABOVE" #x069F)
|
||||
("ARABIC LETTER AIN WITH THREE DOTS ABOVE" #x06A0)
|
||||
("ARABIC LETTER DOTLESS FEH" #x06A1)
|
||||
("ARABIC LETTER FEH WITH DOT MOVED BELOW" #x06A2)
|
||||
("ARABIC LETTER FEH WITH DOT BELOW" #x06A3)
|
||||
("ARABIC LETTER VEH" #x06A4)
|
||||
("ARABIC LETTER FEH WITH THREE DOTS BELOW" #x06A5)
|
||||
("ARABIC LETTER PEHEH" #x06A6)
|
||||
("ARABIC LETTER QAF WITH DOT ABOVE" #x06A7)
|
||||
("ARABIC LETTER QAF WITH THREE DOTS ABOVE" #x06A8)
|
||||
("ARABIC LETTER KEHEH" #x06A9)
|
||||
("ARABIC LETTER SWASH KAF" #x06AA)
|
||||
("ARABIC LETTER KAF WITH RING" #x06AB)
|
||||
("ARABIC LETTER KAF WITH DOT ABOVE" #x06AC)
|
||||
("ARABIC LETTER NG" #x06AD)
|
||||
("ARABIC LETTER KAF WITH THREE DOTS BELOW" #x06AE)
|
||||
("ARABIC LETTER GAF" #x06AF)
|
||||
("ARABIC LETTER GAF WITH RING" #x06B0)
|
||||
("ARABIC LETTER NGOEH" #x06B1)
|
||||
("ARABIC LETTER GAF WITH TWO DOTS BELOW" #x06B2)
|
||||
("ARABIC LETTER GUEH" #x06B3)
|
||||
("ARABIC LETTER GAF WITH THREE DOTS ABOVE" #x06B4)
|
||||
("ARABIC LETTER LAM WITH SMALL V" #x06B5)
|
||||
("ARABIC LETTER LAM WITH DOT ABOVE" #x06B6)
|
||||
("ARABIC LETTER LAM WITH THREE DOTS ABOVE" #x06B7)
|
||||
("ARABIC LETTER LAM WITH THREE DOTS BELOW" #x06B8)
|
||||
("ARABIC LETTER NOON WITH DOT BELOW" #x06B9)
|
||||
("ARABIC LETTER NOON GHUNNA" #x06BA)
|
||||
("ARABIC LETTER RNOON" #x06BB)
|
||||
("ARABIC LETTER NOON WITH RING" #x06BC)
|
||||
("ARABIC LETTER NOON WITH THREE DOTS ABOVE" #x06BD)
|
||||
("ARABIC LETTER HEH DOACHASHMEE" #x06BE)
|
||||
("ARABIC LETTER TCHEH WITH DOT ABOVE" #x06BF)
|
||||
("ARABIC LETTER HEH WITH YEH ABOVE" #x06C0)
|
||||
("ARABIC LETTER HEH GOAL" #x06C1)
|
||||
("ARABIC LETTER HEH GOAL WITH HAMZA ABOVE" #x06C2)
|
||||
("ARABIC LETTER TEH MARBUTA GOAL" #x06C3)
|
||||
("ARABIC LETTER WAW WITH RING" #x06C4)
|
||||
("ARABIC LETTER KIRGHIZ OE" #x06C5)
|
||||
("ARABIC LETTER OE" #x06C6)
|
||||
("ARABIC LETTER U" #x06C7)
|
||||
("ARABIC LETTER YU" #x06C8)
|
||||
("ARABIC LETTER KIRGHIZ YU" #x06C9)
|
||||
("ARABIC LETTER WAW WITH TWO DOTS ABOVE" #x06CA)
|
||||
("ARABIC LETTER VE" #x06CB)
|
||||
("ARABIC LETTER FARSI YEH" #x06CC)
|
||||
("ARABIC LETTER YEH WITH TAIL" #x06CD)
|
||||
("ARABIC LETTER YEH WITH SMALL V" #x06CE)
|
||||
("ARABIC LETTER WAW WITH DOT ABOVE" #x06CF)
|
||||
("ARABIC LETTER E" #x06D0)
|
||||
("ARABIC LETTER YEH WITH THREE DOTS BELOW" #x06D1)
|
||||
("ARABIC LETTER YEH BARREE" #x06D2)
|
||||
("ARABIC LETTER YEH BARREE WITH HAMZA ABOVE" #x06D3)
|
||||
("ARABIC FULL STOP" #x06D4)
|
||||
("ARABIC LETTER AE" #x06D5)
|
||||
("ARABIC SMALL HIGH LIGATURE SAD WITH LAM WITH ALEF MAKSURA" #x06D6)
|
||||
("ARABIC SMALL HIGH LIGATURE QAF WITH LAM WITH ALEF MAKSURA" #x06D7)
|
||||
("ARABIC SMALL HIGH MEEM INITIAL FORM" #x06D8)
|
||||
("ARABIC SMALL HIGH LAM ALEF" #x06D9)
|
||||
("ARABIC SMALL HIGH JEEM" #x06DA)
|
||||
("ARABIC SMALL HIGH THREE DOTS" #x06DB)
|
||||
("ARABIC SMALL HIGH SEEN" #x06DC)
|
||||
("ARABIC END OF AYAH" #x06DD)
|
||||
("ARABIC START OF RUB EL HIZB" #x06DE)
|
||||
("ARABIC SMALL HIGH ROUNDED ZERO" #x06DF)
|
||||
("ARABIC SMALL HIGH UPRIGHT RECTANGULAR ZERO" #x06E0)
|
||||
("ARABIC SMALL HIGH DOTLESS HEAD OF KHAH" #x06E1)
|
||||
("ARABIC SMALL HIGH MEEM ISOLATED FORM" #x06E2)
|
||||
("ARABIC SMALL LOW SEEN" #x06E3)
|
||||
("ARABIC SMALL HIGH MADDA" #x06E4)
|
||||
("ARABIC SMALL WAW" #x06E5)
|
||||
("ARABIC SMALL YEH" #x06E6)
|
||||
("ARABIC SMALL HIGH YEH" #x06E7)
|
||||
("ARABIC SMALL HIGH NOON" #x06E8)
|
||||
("ARABIC PLACE OF SAJDAH" #x06E9)
|
||||
("ARABIC EMPTY CENTRE LOW STOP" #x06EA)
|
||||
("ARABIC EMPTY CENTRE HIGH STOP" #x06EB)
|
||||
("ARABIC ROUNDED HIGH STOP WITH FILLED CENTRE" #x06EC)
|
||||
("ARABIC SMALL LOW MEEM" #x06ED)
|
||||
("EXTENDED ARABIC-INDIC DIGIT ZERO" #x06F0)
|
||||
("EXTENDED ARABIC-INDIC DIGIT ONE" #x06F1)
|
||||
("EXTENDED ARABIC-INDIC DIGIT TWO" #x06F2)
|
||||
("EXTENDED ARABIC-INDIC DIGIT THREE" #x06F3)
|
||||
("EXTENDED ARABIC-INDIC DIGIT FOUR" #x06F4)
|
||||
("EXTENDED ARABIC-INDIC DIGIT FIVE" #x06F5)
|
||||
("EXTENDED ARABIC-INDIC DIGIT SIX" #x06F6)
|
||||
("EXTENDED ARABIC-INDIC DIGIT SEVEN" #x06F7)
|
||||
("EXTENDED ARABIC-INDIC DIGIT EIGHT" #x06F8)
|
||||
("EXTENDED ARABIC-INDIC DIGIT NINE" #x06F9)
|
||||
("ARABIC LETTER SHEEN WITH DOT BELOW" #x06FA)
|
||||
("ARABIC LETTER DAD WITH DOT BELOW" #x06FB)
|
||||
("ARABIC LETTER GHAIN WITH DOT BELOW" #x06FC)
|
||||
("ARABIC SIGN SINDHI AMPERSAND" #x06FD)
|
||||
("ARABIC SIGN SINDHI POSTPOSITION MEN" #x06FE)
|
||||
))
|
||||
|
||||
;; arch-tag: b20189fa-7cdb-4544-a41c-f4e0477d9e5e
|
75
etc/nxml/00700-0074F.el
Normal file
75
etc/nxml/00700-0074F.el
Normal file
|
@ -0,0 +1,75 @@
|
|||
(nxml-define-char-name-set 'syriac
|
||||
'(("SYRIAC END OF PARAGRAPH" #x0700)
|
||||
("SYRIAC SUPRALINEAR FULL STOP" #x0701)
|
||||
("SYRIAC SUBLINEAR FULL STOP" #x0702)
|
||||
("SYRIAC SUPRALINEAR COLON" #x0703)
|
||||
("SYRIAC SUBLINEAR COLON" #x0704)
|
||||
("SYRIAC HORIZONTAL COLON" #x0705)
|
||||
("SYRIAC COLON SKEWED LEFT" #x0706)
|
||||
("SYRIAC COLON SKEWED RIGHT" #x0707)
|
||||
("SYRIAC SUPRALINEAR COLON SKEWED LEFT" #x0708)
|
||||
("SYRIAC SUBLINEAR COLON SKEWED RIGHT" #x0709)
|
||||
("SYRIAC CONTRACTION" #x070A)
|
||||
("SYRIAC HARKLEAN OBELUS" #x070B)
|
||||
("SYRIAC HARKLEAN METOBELUS" #x070C)
|
||||
("SYRIAC HARKLEAN ASTERISCUS" #x070D)
|
||||
("SYRIAC ABBREVIATION MARK" #x070F)
|
||||
("SYRIAC LETTER ALAPH" #x0710)
|
||||
("SYRIAC LETTER SUPERSCRIPT ALAPH" #x0711)
|
||||
("SYRIAC LETTER BETH" #x0712)
|
||||
("SYRIAC LETTER GAMAL" #x0713)
|
||||
("SYRIAC LETTER GAMAL GARSHUNI" #x0714)
|
||||
("SYRIAC LETTER DALATH" #x0715)
|
||||
("SYRIAC LETTER DOTLESS DALATH RISH" #x0716)
|
||||
("SYRIAC LETTER HE" #x0717)
|
||||
("SYRIAC LETTER WAW" #x0718)
|
||||
("SYRIAC LETTER ZAIN" #x0719)
|
||||
("SYRIAC LETTER HETH" #x071A)
|
||||
("SYRIAC LETTER TETH" #x071B)
|
||||
("SYRIAC LETTER TETH GARSHUNI" #x071C)
|
||||
("SYRIAC LETTER YUDH" #x071D)
|
||||
("SYRIAC LETTER YUDH HE" #x071E)
|
||||
("SYRIAC LETTER KAPH" #x071F)
|
||||
("SYRIAC LETTER LAMADH" #x0720)
|
||||
("SYRIAC LETTER MIM" #x0721)
|
||||
("SYRIAC LETTER NUN" #x0722)
|
||||
("SYRIAC LETTER SEMKATH" #x0723)
|
||||
("SYRIAC LETTER FINAL SEMKATH" #x0724)
|
||||
("SYRIAC LETTER E" #x0725)
|
||||
("SYRIAC LETTER PE" #x0726)
|
||||
("SYRIAC LETTER REVERSED PE" #x0727)
|
||||
("SYRIAC LETTER SADHE" #x0728)
|
||||
("SYRIAC LETTER QAPH" #x0729)
|
||||
("SYRIAC LETTER RISH" #x072A)
|
||||
("SYRIAC LETTER SHIN" #x072B)
|
||||
("SYRIAC LETTER TAW" #x072C)
|
||||
("SYRIAC PTHAHA ABOVE" #x0730)
|
||||
("SYRIAC PTHAHA BELOW" #x0731)
|
||||
("SYRIAC PTHAHA DOTTED" #x0732)
|
||||
("SYRIAC ZQAPHA ABOVE" #x0733)
|
||||
("SYRIAC ZQAPHA BELOW" #x0734)
|
||||
("SYRIAC ZQAPHA DOTTED" #x0735)
|
||||
("SYRIAC RBASA ABOVE" #x0736)
|
||||
("SYRIAC RBASA BELOW" #x0737)
|
||||
("SYRIAC DOTTED ZLAMA HORIZONTAL" #x0738)
|
||||
("SYRIAC DOTTED ZLAMA ANGULAR" #x0739)
|
||||
("SYRIAC HBASA ABOVE" #x073A)
|
||||
("SYRIAC HBASA BELOW" #x073B)
|
||||
("SYRIAC HBASA-ESASA DOTTED" #x073C)
|
||||
("SYRIAC ESASA ABOVE" #x073D)
|
||||
("SYRIAC ESASA BELOW" #x073E)
|
||||
("SYRIAC RWAHA" #x073F)
|
||||
("SYRIAC FEMININE DOT" #x0740)
|
||||
("SYRIAC QUSHSHAYA" #x0741)
|
||||
("SYRIAC RUKKAKHA" #x0742)
|
||||
("SYRIAC TWO VERTICAL DOTS ABOVE" #x0743)
|
||||
("SYRIAC TWO VERTICAL DOTS BELOW" #x0744)
|
||||
("SYRIAC THREE DOTS ABOVE" #x0745)
|
||||
("SYRIAC THREE DOTS BELOW" #x0746)
|
||||
("SYRIAC OBLIQUE LINE ABOVE" #x0747)
|
||||
("SYRIAC OBLIQUE LINE BELOW" #x0748)
|
||||
("SYRIAC MUSIC" #x0749)
|
||||
("SYRIAC BARREKH" #x074A)
|
||||
))
|
||||
|
||||
;; arch-tag: c008122a-484e-4253-b18f-eb215dbd1ecf
|
54
etc/nxml/00780-007BF.el
Normal file
54
etc/nxml/00780-007BF.el
Normal file
|
@ -0,0 +1,54 @@
|
|||
(nxml-define-char-name-set 'thaana
|
||||
'(("THAANA LETTER HAA" #x0780)
|
||||
("THAANA LETTER SHAVIYANI" #x0781)
|
||||
("THAANA LETTER NOONU" #x0782)
|
||||
("THAANA LETTER RAA" #x0783)
|
||||
("THAANA LETTER BAA" #x0784)
|
||||
("THAANA LETTER LHAVIYANI" #x0785)
|
||||
("THAANA LETTER KAAFU" #x0786)
|
||||
("THAANA LETTER ALIFU" #x0787)
|
||||
("THAANA LETTER VAAVU" #x0788)
|
||||
("THAANA LETTER MEEMU" #x0789)
|
||||
("THAANA LETTER FAAFU" #x078A)
|
||||
("THAANA LETTER DHAALU" #x078B)
|
||||
("THAANA LETTER THAA" #x078C)
|
||||
("THAANA LETTER LAAMU" #x078D)
|
||||
("THAANA LETTER GAAFU" #x078E)
|
||||
("THAANA LETTER GNAVIYANI" #x078F)
|
||||
("THAANA LETTER SEENU" #x0790)
|
||||
("THAANA LETTER DAVIYANI" #x0791)
|
||||
("THAANA LETTER ZAVIYANI" #x0792)
|
||||
("THAANA LETTER TAVIYANI" #x0793)
|
||||
("THAANA LETTER YAA" #x0794)
|
||||
("THAANA LETTER PAVIYANI" #x0795)
|
||||
("THAANA LETTER JAVIYANI" #x0796)
|
||||
("THAANA LETTER CHAVIYANI" #x0797)
|
||||
("THAANA LETTER TTAA" #x0798)
|
||||
("THAANA LETTER HHAA" #x0799)
|
||||
("THAANA LETTER KHAA" #x079A)
|
||||
("THAANA LETTER THAALU" #x079B)
|
||||
("THAANA LETTER ZAA" #x079C)
|
||||
("THAANA LETTER SHEENU" #x079D)
|
||||
("THAANA LETTER SAADHU" #x079E)
|
||||
("THAANA LETTER DAADHU" #x079F)
|
||||
("THAANA LETTER TO" #x07A0)
|
||||
("THAANA LETTER ZO" #x07A1)
|
||||
("THAANA LETTER AINU" #x07A2)
|
||||
("THAANA LETTER GHAINU" #x07A3)
|
||||
("THAANA LETTER QAAFU" #x07A4)
|
||||
("THAANA LETTER WAAVU" #x07A5)
|
||||
("THAANA ABAFILI" #x07A6)
|
||||
("THAANA AABAAFILI" #x07A7)
|
||||
("THAANA IBIFILI" #x07A8)
|
||||
("THAANA EEBEEFILI" #x07A9)
|
||||
("THAANA UBUFILI" #x07AA)
|
||||
("THAANA OOBOOFILI" #x07AB)
|
||||
("THAANA EBEFILI" #x07AC)
|
||||
("THAANA EYBEYFILI" #x07AD)
|
||||
("THAANA OBOFILI" #x07AE)
|
||||
("THAANA OABOAFILI" #x07AF)
|
||||
("THAANA SUKUN" #x07B0)
|
||||
("THAANA LETTER NAA" #x07B1)
|
||||
))
|
||||
|
||||
;; arch-tag: e1974c30-0604-412a-af3d-b6e688e0586c
|
108
etc/nxml/00900-0097F.el
Normal file
108
etc/nxml/00900-0097F.el
Normal file
|
@ -0,0 +1,108 @@
|
|||
(nxml-define-char-name-set 'devanagari
|
||||
'(("DEVANAGARI SIGN CANDRABINDU" #x0901)
|
||||
("DEVANAGARI SIGN ANUSVARA" #x0902)
|
||||
("DEVANAGARI SIGN VISARGA" #x0903)
|
||||
("DEVANAGARI LETTER A" #x0905)
|
||||
("DEVANAGARI LETTER AA" #x0906)
|
||||
("DEVANAGARI LETTER I" #x0907)
|
||||
("DEVANAGARI LETTER II" #x0908)
|
||||
("DEVANAGARI LETTER U" #x0909)
|
||||
("DEVANAGARI LETTER UU" #x090A)
|
||||
("DEVANAGARI LETTER VOCALIC R" #x090B)
|
||||
("DEVANAGARI LETTER VOCALIC L" #x090C)
|
||||
("DEVANAGARI LETTER CANDRA E" #x090D)
|
||||
("DEVANAGARI LETTER SHORT E" #x090E)
|
||||
("DEVANAGARI LETTER E" #x090F)
|
||||
("DEVANAGARI LETTER AI" #x0910)
|
||||
("DEVANAGARI LETTER CANDRA O" #x0911)
|
||||
("DEVANAGARI LETTER SHORT O" #x0912)
|
||||
("DEVANAGARI LETTER O" #x0913)
|
||||
("DEVANAGARI LETTER AU" #x0914)
|
||||
("DEVANAGARI LETTER KA" #x0915)
|
||||
("DEVANAGARI LETTER KHA" #x0916)
|
||||
("DEVANAGARI LETTER GA" #x0917)
|
||||
("DEVANAGARI LETTER GHA" #x0918)
|
||||
("DEVANAGARI LETTER NGA" #x0919)
|
||||
("DEVANAGARI LETTER CA" #x091A)
|
||||
("DEVANAGARI LETTER CHA" #x091B)
|
||||
("DEVANAGARI LETTER JA" #x091C)
|
||||
("DEVANAGARI LETTER JHA" #x091D)
|
||||
("DEVANAGARI LETTER NYA" #x091E)
|
||||
("DEVANAGARI LETTER TTA" #x091F)
|
||||
("DEVANAGARI LETTER TTHA" #x0920)
|
||||
("DEVANAGARI LETTER DDA" #x0921)
|
||||
("DEVANAGARI LETTER DDHA" #x0922)
|
||||
("DEVANAGARI LETTER NNA" #x0923)
|
||||
("DEVANAGARI LETTER TA" #x0924)
|
||||
("DEVANAGARI LETTER THA" #x0925)
|
||||
("DEVANAGARI LETTER DA" #x0926)
|
||||
("DEVANAGARI LETTER DHA" #x0927)
|
||||
("DEVANAGARI LETTER NA" #x0928)
|
||||
("DEVANAGARI LETTER NNNA" #x0929)
|
||||
("DEVANAGARI LETTER PA" #x092A)
|
||||
("DEVANAGARI LETTER PHA" #x092B)
|
||||
("DEVANAGARI LETTER BA" #x092C)
|
||||
("DEVANAGARI LETTER BHA" #x092D)
|
||||
("DEVANAGARI LETTER MA" #x092E)
|
||||
("DEVANAGARI LETTER YA" #x092F)
|
||||
("DEVANAGARI LETTER RA" #x0930)
|
||||
("DEVANAGARI LETTER RRA" #x0931)
|
||||
("DEVANAGARI LETTER LA" #x0932)
|
||||
("DEVANAGARI LETTER LLA" #x0933)
|
||||
("DEVANAGARI LETTER LLLA" #x0934)
|
||||
("DEVANAGARI LETTER VA" #x0935)
|
||||
("DEVANAGARI LETTER SHA" #x0936)
|
||||
("DEVANAGARI LETTER SSA" #x0937)
|
||||
("DEVANAGARI LETTER SA" #x0938)
|
||||
("DEVANAGARI LETTER HA" #x0939)
|
||||
("DEVANAGARI SIGN NUKTA" #x093C)
|
||||
("DEVANAGARI SIGN AVAGRAHA" #x093D)
|
||||
("DEVANAGARI VOWEL SIGN AA" #x093E)
|
||||
("DEVANAGARI VOWEL SIGN I" #x093F)
|
||||
("DEVANAGARI VOWEL SIGN II" #x0940)
|
||||
("DEVANAGARI VOWEL SIGN U" #x0941)
|
||||
("DEVANAGARI VOWEL SIGN UU" #x0942)
|
||||
("DEVANAGARI VOWEL SIGN VOCALIC R" #x0943)
|
||||
("DEVANAGARI VOWEL SIGN VOCALIC RR" #x0944)
|
||||
("DEVANAGARI VOWEL SIGN CANDRA E" #x0945)
|
||||
("DEVANAGARI VOWEL SIGN SHORT E" #x0946)
|
||||
("DEVANAGARI VOWEL SIGN E" #x0947)
|
||||
("DEVANAGARI VOWEL SIGN AI" #x0948)
|
||||
("DEVANAGARI VOWEL SIGN CANDRA O" #x0949)
|
||||
("DEVANAGARI VOWEL SIGN SHORT O" #x094A)
|
||||
("DEVANAGARI VOWEL SIGN O" #x094B)
|
||||
("DEVANAGARI VOWEL SIGN AU" #x094C)
|
||||
("DEVANAGARI SIGN VIRAMA" #x094D)
|
||||
("DEVANAGARI OM" #x0950)
|
||||
("DEVANAGARI STRESS SIGN UDATTA" #x0951)
|
||||
("DEVANAGARI STRESS SIGN ANUDATTA" #x0952)
|
||||
("DEVANAGARI GRAVE ACCENT" #x0953)
|
||||
("DEVANAGARI ACUTE ACCENT" #x0954)
|
||||
("DEVANAGARI LETTER QA" #x0958)
|
||||
("DEVANAGARI LETTER KHHA" #x0959)
|
||||
("DEVANAGARI LETTER GHHA" #x095A)
|
||||
("DEVANAGARI LETTER ZA" #x095B)
|
||||
("DEVANAGARI LETTER DDDHA" #x095C)
|
||||
("DEVANAGARI LETTER RHA" #x095D)
|
||||
("DEVANAGARI LETTER FA" #x095E)
|
||||
("DEVANAGARI LETTER YYA" #x095F)
|
||||
("DEVANAGARI LETTER VOCALIC RR" #x0960)
|
||||
("DEVANAGARI LETTER VOCALIC LL" #x0961)
|
||||
("DEVANAGARI VOWEL SIGN VOCALIC L" #x0962)
|
||||
("DEVANAGARI VOWEL SIGN VOCALIC LL" #x0963)
|
||||
("DEVANAGARI DANDA" #x0964)
|
||||
("DEVANAGARI DOUBLE DANDA" #x0965)
|
||||
("DEVANAGARI DIGIT ZERO" #x0966)
|
||||
("DEVANAGARI DIGIT ONE" #x0967)
|
||||
("DEVANAGARI DIGIT TWO" #x0968)
|
||||
("DEVANAGARI DIGIT THREE" #x0969)
|
||||
("DEVANAGARI DIGIT FOUR" #x096A)
|
||||
("DEVANAGARI DIGIT FIVE" #x096B)
|
||||
("DEVANAGARI DIGIT SIX" #x096C)
|
||||
("DEVANAGARI DIGIT SEVEN" #x096D)
|
||||
("DEVANAGARI DIGIT EIGHT" #x096E)
|
||||
("DEVANAGARI DIGIT NINE" #x096F)
|
||||
("DEVANAGARI ABBREVIATION SIGN" #x0970)
|
||||
))
|
||||
|
||||
;; arch-tag: c9d655c5-2ec9-4b64-a13f-d4fafe0cbad7
|
93
etc/nxml/00980-009FF.el
Normal file
93
etc/nxml/00980-009FF.el
Normal file
|
@ -0,0 +1,93 @@
|
|||
(nxml-define-char-name-set 'bengali
|
||||
'(("BENGALI SIGN CANDRABINDU" #x0981)
|
||||
("BENGALI SIGN ANUSVARA" #x0982)
|
||||
("BENGALI SIGN VISARGA" #x0983)
|
||||
("BENGALI LETTER A" #x0985)
|
||||
("BENGALI LETTER AA" #x0986)
|
||||
("BENGALI LETTER I" #x0987)
|
||||
("BENGALI LETTER II" #x0988)
|
||||
("BENGALI LETTER U" #x0989)
|
||||
("BENGALI LETTER UU" #x098A)
|
||||
("BENGALI LETTER VOCALIC R" #x098B)
|
||||
("BENGALI LETTER VOCALIC L" #x098C)
|
||||
("BENGALI LETTER E" #x098F)
|
||||
("BENGALI LETTER AI" #x0990)
|
||||
("BENGALI LETTER O" #x0993)
|
||||
("BENGALI LETTER AU" #x0994)
|
||||
("BENGALI LETTER KA" #x0995)
|
||||
("BENGALI LETTER KHA" #x0996)
|
||||
("BENGALI LETTER GA" #x0997)
|
||||
("BENGALI LETTER GHA" #x0998)
|
||||
("BENGALI LETTER NGA" #x0999)
|
||||
("BENGALI LETTER CA" #x099A)
|
||||
("BENGALI LETTER CHA" #x099B)
|
||||
("BENGALI LETTER JA" #x099C)
|
||||
("BENGALI LETTER JHA" #x099D)
|
||||
("BENGALI LETTER NYA" #x099E)
|
||||
("BENGALI LETTER TTA" #x099F)
|
||||
("BENGALI LETTER TTHA" #x09A0)
|
||||
("BENGALI LETTER DDA" #x09A1)
|
||||
("BENGALI LETTER DDHA" #x09A2)
|
||||
("BENGALI LETTER NNA" #x09A3)
|
||||
("BENGALI LETTER TA" #x09A4)
|
||||
("BENGALI LETTER THA" #x09A5)
|
||||
("BENGALI LETTER DA" #x09A6)
|
||||
("BENGALI LETTER DHA" #x09A7)
|
||||
("BENGALI LETTER NA" #x09A8)
|
||||
("BENGALI LETTER PA" #x09AA)
|
||||
("BENGALI LETTER PHA" #x09AB)
|
||||
("BENGALI LETTER BA" #x09AC)
|
||||
("BENGALI LETTER BHA" #x09AD)
|
||||
("BENGALI LETTER MA" #x09AE)
|
||||
("BENGALI LETTER YA" #x09AF)
|
||||
("BENGALI LETTER RA" #x09B0)
|
||||
("BENGALI LETTER LA" #x09B2)
|
||||
("BENGALI LETTER SHA" #x09B6)
|
||||
("BENGALI LETTER SSA" #x09B7)
|
||||
("BENGALI LETTER SA" #x09B8)
|
||||
("BENGALI LETTER HA" #x09B9)
|
||||
("BENGALI SIGN NUKTA" #x09BC)
|
||||
("BENGALI VOWEL SIGN AA" #x09BE)
|
||||
("BENGALI VOWEL SIGN I" #x09BF)
|
||||
("BENGALI VOWEL SIGN II" #x09C0)
|
||||
("BENGALI VOWEL SIGN U" #x09C1)
|
||||
("BENGALI VOWEL SIGN UU" #x09C2)
|
||||
("BENGALI VOWEL SIGN VOCALIC R" #x09C3)
|
||||
("BENGALI VOWEL SIGN VOCALIC RR" #x09C4)
|
||||
("BENGALI VOWEL SIGN E" #x09C7)
|
||||
("BENGALI VOWEL SIGN AI" #x09C8)
|
||||
("BENGALI VOWEL SIGN O" #x09CB)
|
||||
("BENGALI VOWEL SIGN AU" #x09CC)
|
||||
("BENGALI SIGN VIRAMA" #x09CD)
|
||||
("BENGALI AU LENGTH MARK" #x09D7)
|
||||
("BENGALI LETTER RRA" #x09DC)
|
||||
("BENGALI LETTER RHA" #x09DD)
|
||||
("BENGALI LETTER YYA" #x09DF)
|
||||
("BENGALI LETTER VOCALIC RR" #x09E0)
|
||||
("BENGALI LETTER VOCALIC LL" #x09E1)
|
||||
("BENGALI VOWEL SIGN VOCALIC L" #x09E2)
|
||||
("BENGALI VOWEL SIGN VOCALIC LL" #x09E3)
|
||||
("BENGALI DIGIT ZERO" #x09E6)
|
||||
("BENGALI DIGIT ONE" #x09E7)
|
||||
("BENGALI DIGIT TWO" #x09E8)
|
||||
("BENGALI DIGIT THREE" #x09E9)
|
||||
("BENGALI DIGIT FOUR" #x09EA)
|
||||
("BENGALI DIGIT FIVE" #x09EB)
|
||||
("BENGALI DIGIT SIX" #x09EC)
|
||||
("BENGALI DIGIT SEVEN" #x09ED)
|
||||
("BENGALI DIGIT EIGHT" #x09EE)
|
||||
("BENGALI DIGIT NINE" #x09EF)
|
||||
("BENGALI LETTER RA WITH MIDDLE DIAGONAL" #x09F0)
|
||||
("BENGALI LETTER RA WITH LOWER DIAGONAL" #x09F1)
|
||||
("BENGALI RUPEE MARK" #x09F2)
|
||||
("BENGALI RUPEE SIGN" #x09F3)
|
||||
("BENGALI CURRENCY NUMERATOR ONE" #x09F4)
|
||||
("BENGALI CURRENCY NUMERATOR TWO" #x09F5)
|
||||
("BENGALI CURRENCY NUMERATOR THREE" #x09F6)
|
||||
("BENGALI CURRENCY NUMERATOR FOUR" #x09F7)
|
||||
("BENGALI CURRENCY NUMERATOR ONE LESS THAN THE DENOMINATOR" #x09F8)
|
||||
("BENGALI CURRENCY DENOMINATOR SIXTEEN" #x09F9)
|
||||
("BENGALI ISSHAR" #x09FA)
|
||||
))
|
||||
|
||||
;; arch-tag: 66599f15-c2b7-436a-9737-577d4f041abd
|
79
etc/nxml/00A00-00A7F.el
Normal file
79
etc/nxml/00A00-00A7F.el
Normal file
|
@ -0,0 +1,79 @@
|
|||
(nxml-define-char-name-set 'gurmukhi
|
||||
'(("GURMUKHI SIGN BINDI" #x0A02)
|
||||
("GURMUKHI LETTER A" #x0A05)
|
||||
("GURMUKHI LETTER AA" #x0A06)
|
||||
("GURMUKHI LETTER I" #x0A07)
|
||||
("GURMUKHI LETTER II" #x0A08)
|
||||
("GURMUKHI LETTER U" #x0A09)
|
||||
("GURMUKHI LETTER UU" #x0A0A)
|
||||
("GURMUKHI LETTER EE" #x0A0F)
|
||||
("GURMUKHI LETTER AI" #x0A10)
|
||||
("GURMUKHI LETTER OO" #x0A13)
|
||||
("GURMUKHI LETTER AU" #x0A14)
|
||||
("GURMUKHI LETTER KA" #x0A15)
|
||||
("GURMUKHI LETTER KHA" #x0A16)
|
||||
("GURMUKHI LETTER GA" #x0A17)
|
||||
("GURMUKHI LETTER GHA" #x0A18)
|
||||
("GURMUKHI LETTER NGA" #x0A19)
|
||||
("GURMUKHI LETTER CA" #x0A1A)
|
||||
("GURMUKHI LETTER CHA" #x0A1B)
|
||||
("GURMUKHI LETTER JA" #x0A1C)
|
||||
("GURMUKHI LETTER JHA" #x0A1D)
|
||||
("GURMUKHI LETTER NYA" #x0A1E)
|
||||
("GURMUKHI LETTER TTA" #x0A1F)
|
||||
("GURMUKHI LETTER TTHA" #x0A20)
|
||||
("GURMUKHI LETTER DDA" #x0A21)
|
||||
("GURMUKHI LETTER DDHA" #x0A22)
|
||||
("GURMUKHI LETTER NNA" #x0A23)
|
||||
("GURMUKHI LETTER TA" #x0A24)
|
||||
("GURMUKHI LETTER THA" #x0A25)
|
||||
("GURMUKHI LETTER DA" #x0A26)
|
||||
("GURMUKHI LETTER DHA" #x0A27)
|
||||
("GURMUKHI LETTER NA" #x0A28)
|
||||
("GURMUKHI LETTER PA" #x0A2A)
|
||||
("GURMUKHI LETTER PHA" #x0A2B)
|
||||
("GURMUKHI LETTER BA" #x0A2C)
|
||||
("GURMUKHI LETTER BHA" #x0A2D)
|
||||
("GURMUKHI LETTER MA" #x0A2E)
|
||||
("GURMUKHI LETTER YA" #x0A2F)
|
||||
("GURMUKHI LETTER RA" #x0A30)
|
||||
("GURMUKHI LETTER LA" #x0A32)
|
||||
("GURMUKHI LETTER LLA" #x0A33)
|
||||
("GURMUKHI LETTER VA" #x0A35)
|
||||
("GURMUKHI LETTER SHA" #x0A36)
|
||||
("GURMUKHI LETTER SA" #x0A38)
|
||||
("GURMUKHI LETTER HA" #x0A39)
|
||||
("GURMUKHI SIGN NUKTA" #x0A3C)
|
||||
("GURMUKHI VOWEL SIGN AA" #x0A3E)
|
||||
("GURMUKHI VOWEL SIGN I" #x0A3F)
|
||||
("GURMUKHI VOWEL SIGN II" #x0A40)
|
||||
("GURMUKHI VOWEL SIGN U" #x0A41)
|
||||
("GURMUKHI VOWEL SIGN UU" #x0A42)
|
||||
("GURMUKHI VOWEL SIGN EE" #x0A47)
|
||||
("GURMUKHI VOWEL SIGN AI" #x0A48)
|
||||
("GURMUKHI VOWEL SIGN OO" #x0A4B)
|
||||
("GURMUKHI VOWEL SIGN AU" #x0A4C)
|
||||
("GURMUKHI SIGN VIRAMA" #x0A4D)
|
||||
("GURMUKHI LETTER KHHA" #x0A59)
|
||||
("GURMUKHI LETTER GHHA" #x0A5A)
|
||||
("GURMUKHI LETTER ZA" #x0A5B)
|
||||
("GURMUKHI LETTER RRA" #x0A5C)
|
||||
("GURMUKHI LETTER FA" #x0A5E)
|
||||
("GURMUKHI DIGIT ZERO" #x0A66)
|
||||
("GURMUKHI DIGIT ONE" #x0A67)
|
||||
("GURMUKHI DIGIT TWO" #x0A68)
|
||||
("GURMUKHI DIGIT THREE" #x0A69)
|
||||
("GURMUKHI DIGIT FOUR" #x0A6A)
|
||||
("GURMUKHI DIGIT FIVE" #x0A6B)
|
||||
("GURMUKHI DIGIT SIX" #x0A6C)
|
||||
("GURMUKHI DIGIT SEVEN" #x0A6D)
|
||||
("GURMUKHI DIGIT EIGHT" #x0A6E)
|
||||
("GURMUKHI DIGIT NINE" #x0A6F)
|
||||
("GURMUKHI TIPPI" #x0A70)
|
||||
("GURMUKHI ADDAK" #x0A71)
|
||||
("GURMUKHI IRI" #x0A72)
|
||||
("GURMUKHI URA" #x0A73)
|
||||
("GURMUKHI EK ONKAR" #x0A74)
|
||||
))
|
||||
|
||||
;; arch-tag: e97fe67c-79ac-48f8-8274-22436eec2f01
|
82
etc/nxml/00A80-00AFF.el
Normal file
82
etc/nxml/00A80-00AFF.el
Normal file
|
@ -0,0 +1,82 @@
|
|||
(nxml-define-char-name-set 'gujarati
|
||||
'(("GUJARATI SIGN CANDRABINDU" #x0A81)
|
||||
("GUJARATI SIGN ANUSVARA" #x0A82)
|
||||
("GUJARATI SIGN VISARGA" #x0A83)
|
||||
("GUJARATI LETTER A" #x0A85)
|
||||
("GUJARATI LETTER AA" #x0A86)
|
||||
("GUJARATI LETTER I" #x0A87)
|
||||
("GUJARATI LETTER II" #x0A88)
|
||||
("GUJARATI LETTER U" #x0A89)
|
||||
("GUJARATI LETTER UU" #x0A8A)
|
||||
("GUJARATI LETTER VOCALIC R" #x0A8B)
|
||||
("GUJARATI VOWEL CANDRA E" #x0A8D)
|
||||
("GUJARATI LETTER E" #x0A8F)
|
||||
("GUJARATI LETTER AI" #x0A90)
|
||||
("GUJARATI VOWEL CANDRA O" #x0A91)
|
||||
("GUJARATI LETTER O" #x0A93)
|
||||
("GUJARATI LETTER AU" #x0A94)
|
||||
("GUJARATI LETTER KA" #x0A95)
|
||||
("GUJARATI LETTER KHA" #x0A96)
|
||||
("GUJARATI LETTER GA" #x0A97)
|
||||
("GUJARATI LETTER GHA" #x0A98)
|
||||
("GUJARATI LETTER NGA" #x0A99)
|
||||
("GUJARATI LETTER CA" #x0A9A)
|
||||
("GUJARATI LETTER CHA" #x0A9B)
|
||||
("GUJARATI LETTER JA" #x0A9C)
|
||||
("GUJARATI LETTER JHA" #x0A9D)
|
||||
("GUJARATI LETTER NYA" #x0A9E)
|
||||
("GUJARATI LETTER TTA" #x0A9F)
|
||||
("GUJARATI LETTER TTHA" #x0AA0)
|
||||
("GUJARATI LETTER DDA" #x0AA1)
|
||||
("GUJARATI LETTER DDHA" #x0AA2)
|
||||
("GUJARATI LETTER NNA" #x0AA3)
|
||||
("GUJARATI LETTER TA" #x0AA4)
|
||||
("GUJARATI LETTER THA" #x0AA5)
|
||||
("GUJARATI LETTER DA" #x0AA6)
|
||||
("GUJARATI LETTER DHA" #x0AA7)
|
||||
("GUJARATI LETTER NA" #x0AA8)
|
||||
("GUJARATI LETTER PA" #x0AAA)
|
||||
("GUJARATI LETTER PHA" #x0AAB)
|
||||
("GUJARATI LETTER BA" #x0AAC)
|
||||
("GUJARATI LETTER BHA" #x0AAD)
|
||||
("GUJARATI LETTER MA" #x0AAE)
|
||||
("GUJARATI LETTER YA" #x0AAF)
|
||||
("GUJARATI LETTER RA" #x0AB0)
|
||||
("GUJARATI LETTER LA" #x0AB2)
|
||||
("GUJARATI LETTER LLA" #x0AB3)
|
||||
("GUJARATI LETTER VA" #x0AB5)
|
||||
("GUJARATI LETTER SHA" #x0AB6)
|
||||
("GUJARATI LETTER SSA" #x0AB7)
|
||||
("GUJARATI LETTER SA" #x0AB8)
|
||||
("GUJARATI LETTER HA" #x0AB9)
|
||||
("GUJARATI SIGN NUKTA" #x0ABC)
|
||||
("GUJARATI SIGN AVAGRAHA" #x0ABD)
|
||||
("GUJARATI VOWEL SIGN AA" #x0ABE)
|
||||
("GUJARATI VOWEL SIGN I" #x0ABF)
|
||||
("GUJARATI VOWEL SIGN II" #x0AC0)
|
||||
("GUJARATI VOWEL SIGN U" #x0AC1)
|
||||
("GUJARATI VOWEL SIGN UU" #x0AC2)
|
||||
("GUJARATI VOWEL SIGN VOCALIC R" #x0AC3)
|
||||
("GUJARATI VOWEL SIGN VOCALIC RR" #x0AC4)
|
||||
("GUJARATI VOWEL SIGN CANDRA E" #x0AC5)
|
||||
("GUJARATI VOWEL SIGN E" #x0AC7)
|
||||
("GUJARATI VOWEL SIGN AI" #x0AC8)
|
||||
("GUJARATI VOWEL SIGN CANDRA O" #x0AC9)
|
||||
("GUJARATI VOWEL SIGN O" #x0ACB)
|
||||
("GUJARATI VOWEL SIGN AU" #x0ACC)
|
||||
("GUJARATI SIGN VIRAMA" #x0ACD)
|
||||
("GUJARATI OM" #x0AD0)
|
||||
("GUJARATI LETTER VOCALIC RR" #x0AE0)
|
||||
("GUJARATI DIGIT ZERO" #x0AE6)
|
||||
("GUJARATI DIGIT ONE" #x0AE7)
|
||||
("GUJARATI DIGIT TWO" #x0AE8)
|
||||
("GUJARATI DIGIT THREE" #x0AE9)
|
||||
("GUJARATI DIGIT FOUR" #x0AEA)
|
||||
("GUJARATI DIGIT FIVE" #x0AEB)
|
||||
("GUJARATI DIGIT SIX" #x0AEC)
|
||||
("GUJARATI DIGIT SEVEN" #x0AED)
|
||||
("GUJARATI DIGIT EIGHT" #x0AEE)
|
||||
("GUJARATI DIGIT NINE" #x0AEF)
|
||||
))
|
||||
|
||||
;; arch-tag: e11e63c9-1fd7-496b-be1b-4c2bb32bdec4
|
83
etc/nxml/00B00-00B7F.el
Normal file
83
etc/nxml/00B00-00B7F.el
Normal file
|
@ -0,0 +1,83 @@
|
|||
(nxml-define-char-name-set 'oriya
|
||||
'(("ORIYA SIGN CANDRABINDU" #x0B01)
|
||||
("ORIYA SIGN ANUSVARA" #x0B02)
|
||||
("ORIYA SIGN VISARGA" #x0B03)
|
||||
("ORIYA LETTER A" #x0B05)
|
||||
("ORIYA LETTER AA" #x0B06)
|
||||
("ORIYA LETTER I" #x0B07)
|
||||
("ORIYA LETTER II" #x0B08)
|
||||
("ORIYA LETTER U" #x0B09)
|
||||
("ORIYA LETTER UU" #x0B0A)
|
||||
("ORIYA LETTER VOCALIC R" #x0B0B)
|
||||
("ORIYA LETTER VOCALIC L" #x0B0C)
|
||||
("ORIYA LETTER E" #x0B0F)
|
||||
("ORIYA LETTER AI" #x0B10)
|
||||
("ORIYA LETTER O" #x0B13)
|
||||
("ORIYA LETTER AU" #x0B14)
|
||||
("ORIYA LETTER KA" #x0B15)
|
||||
("ORIYA LETTER KHA" #x0B16)
|
||||
("ORIYA LETTER GA" #x0B17)
|
||||
("ORIYA LETTER GHA" #x0B18)
|
||||
("ORIYA LETTER NGA" #x0B19)
|
||||
("ORIYA LETTER CA" #x0B1A)
|
||||
("ORIYA LETTER CHA" #x0B1B)
|
||||
("ORIYA LETTER JA" #x0B1C)
|
||||
("ORIYA LETTER JHA" #x0B1D)
|
||||
("ORIYA LETTER NYA" #x0B1E)
|
||||
("ORIYA LETTER TTA" #x0B1F)
|
||||
("ORIYA LETTER TTHA" #x0B20)
|
||||
("ORIYA LETTER DDA" #x0B21)
|
||||
("ORIYA LETTER DDHA" #x0B22)
|
||||
("ORIYA LETTER NNA" #x0B23)
|
||||
("ORIYA LETTER TA" #x0B24)
|
||||
("ORIYA LETTER THA" #x0B25)
|
||||
("ORIYA LETTER DA" #x0B26)
|
||||
("ORIYA LETTER DHA" #x0B27)
|
||||
("ORIYA LETTER NA" #x0B28)
|
||||
("ORIYA LETTER PA" #x0B2A)
|
||||
("ORIYA LETTER PHA" #x0B2B)
|
||||
("ORIYA LETTER BA" #x0B2C)
|
||||
("ORIYA LETTER BHA" #x0B2D)
|
||||
("ORIYA LETTER MA" #x0B2E)
|
||||
("ORIYA LETTER YA" #x0B2F)
|
||||
("ORIYA LETTER RA" #x0B30)
|
||||
("ORIYA LETTER LA" #x0B32)
|
||||
("ORIYA LETTER LLA" #x0B33)
|
||||
("ORIYA LETTER SHA" #x0B36)
|
||||
("ORIYA LETTER SSA" #x0B37)
|
||||
("ORIYA LETTER SA" #x0B38)
|
||||
("ORIYA LETTER HA" #x0B39)
|
||||
("ORIYA SIGN NUKTA" #x0B3C)
|
||||
("ORIYA SIGN AVAGRAHA" #x0B3D)
|
||||
("ORIYA VOWEL SIGN AA" #x0B3E)
|
||||
("ORIYA VOWEL SIGN I" #x0B3F)
|
||||
("ORIYA VOWEL SIGN II" #x0B40)
|
||||
("ORIYA VOWEL SIGN U" #x0B41)
|
||||
("ORIYA VOWEL SIGN UU" #x0B42)
|
||||
("ORIYA VOWEL SIGN VOCALIC R" #x0B43)
|
||||
("ORIYA VOWEL SIGN E" #x0B47)
|
||||
("ORIYA VOWEL SIGN AI" #x0B48)
|
||||
("ORIYA VOWEL SIGN O" #x0B4B)
|
||||
("ORIYA VOWEL SIGN AU" #x0B4C)
|
||||
("ORIYA SIGN VIRAMA" #x0B4D)
|
||||
("ORIYA AI LENGTH MARK" #x0B56)
|
||||
("ORIYA AU LENGTH MARK" #x0B57)
|
||||
("ORIYA LETTER RRA" #x0B5C)
|
||||
("ORIYA LETTER RHA" #x0B5D)
|
||||
("ORIYA LETTER YYA" #x0B5F)
|
||||
("ORIYA LETTER VOCALIC RR" #x0B60)
|
||||
("ORIYA LETTER VOCALIC LL" #x0B61)
|
||||
("ORIYA DIGIT ZERO" #x0B66)
|
||||
("ORIYA DIGIT ONE" #x0B67)
|
||||
("ORIYA DIGIT TWO" #x0B68)
|
||||
("ORIYA DIGIT THREE" #x0B69)
|
||||
("ORIYA DIGIT FOUR" #x0B6A)
|
||||
("ORIYA DIGIT FIVE" #x0B6B)
|
||||
("ORIYA DIGIT SIX" #x0B6C)
|
||||
("ORIYA DIGIT SEVEN" #x0B6D)
|
||||
("ORIYA DIGIT EIGHT" #x0B6E)
|
||||
("ORIYA DIGIT NINE" #x0B6F)
|
||||
("ORIYA ISSHAR" #x0B70)
|
||||
))
|
||||
|
||||
;; arch-tag: 3a780627-f875-450a-b482-6b25f28c6f96
|
65
etc/nxml/00B80-00BFF.el
Normal file
65
etc/nxml/00B80-00BFF.el
Normal file
|
@ -0,0 +1,65 @@
|
|||
(nxml-define-char-name-set 'tamil
|
||||
'(("TAMIL SIGN ANUSVARA" #x0B82)
|
||||
("TAMIL SIGN VISARGA" #x0B83)
|
||||
("TAMIL LETTER A" #x0B85)
|
||||
("TAMIL LETTER AA" #x0B86)
|
||||
("TAMIL LETTER I" #x0B87)
|
||||
("TAMIL LETTER II" #x0B88)
|
||||
("TAMIL LETTER U" #x0B89)
|
||||
("TAMIL LETTER UU" #x0B8A)
|
||||
("TAMIL LETTER E" #x0B8E)
|
||||
("TAMIL LETTER EE" #x0B8F)
|
||||
("TAMIL LETTER AI" #x0B90)
|
||||
("TAMIL LETTER O" #x0B92)
|
||||
("TAMIL LETTER OO" #x0B93)
|
||||
("TAMIL LETTER AU" #x0B94)
|
||||
("TAMIL LETTER KA" #x0B95)
|
||||
("TAMIL LETTER NGA" #x0B99)
|
||||
("TAMIL LETTER CA" #x0B9A)
|
||||
("TAMIL LETTER JA" #x0B9C)
|
||||
("TAMIL LETTER NYA" #x0B9E)
|
||||
("TAMIL LETTER TTA" #x0B9F)
|
||||
("TAMIL LETTER NNA" #x0BA3)
|
||||
("TAMIL LETTER TA" #x0BA4)
|
||||
("TAMIL LETTER NA" #x0BA8)
|
||||
("TAMIL LETTER NNNA" #x0BA9)
|
||||
("TAMIL LETTER PA" #x0BAA)
|
||||
("TAMIL LETTER MA" #x0BAE)
|
||||
("TAMIL LETTER YA" #x0BAF)
|
||||
("TAMIL LETTER RA" #x0BB0)
|
||||
("TAMIL LETTER RRA" #x0BB1)
|
||||
("TAMIL LETTER LA" #x0BB2)
|
||||
("TAMIL LETTER LLA" #x0BB3)
|
||||
("TAMIL LETTER LLLA" #x0BB4)
|
||||
("TAMIL LETTER VA" #x0BB5)
|
||||
("TAMIL LETTER SSA" #x0BB7)
|
||||
("TAMIL LETTER SA" #x0BB8)
|
||||
("TAMIL LETTER HA" #x0BB9)
|
||||
("TAMIL VOWEL SIGN AA" #x0BBE)
|
||||
("TAMIL VOWEL SIGN I" #x0BBF)
|
||||
("TAMIL VOWEL SIGN II" #x0BC0)
|
||||
("TAMIL VOWEL SIGN U" #x0BC1)
|
||||
("TAMIL VOWEL SIGN UU" #x0BC2)
|
||||
("TAMIL VOWEL SIGN E" #x0BC6)
|
||||
("TAMIL VOWEL SIGN EE" #x0BC7)
|
||||
("TAMIL VOWEL SIGN AI" #x0BC8)
|
||||
("TAMIL VOWEL SIGN O" #x0BCA)
|
||||
("TAMIL VOWEL SIGN OO" #x0BCB)
|
||||
("TAMIL VOWEL SIGN AU" #x0BCC)
|
||||
("TAMIL SIGN VIRAMA" #x0BCD)
|
||||
("TAMIL AU LENGTH MARK" #x0BD7)
|
||||
("TAMIL DIGIT ONE" #x0BE7)
|
||||
("TAMIL DIGIT TWO" #x0BE8)
|
||||
("TAMIL DIGIT THREE" #x0BE9)
|
||||
("TAMIL DIGIT FOUR" #x0BEA)
|
||||
("TAMIL DIGIT FIVE" #x0BEB)
|
||||
("TAMIL DIGIT SIX" #x0BEC)
|
||||
("TAMIL DIGIT SEVEN" #x0BED)
|
||||
("TAMIL DIGIT EIGHT" #x0BEE)
|
||||
("TAMIL DIGIT NINE" #x0BEF)
|
||||
("TAMIL NUMBER TEN" #x0BF0)
|
||||
("TAMIL NUMBER ONE HUNDRED" #x0BF1)
|
||||
("TAMIL NUMBER ONE THOUSAND" #x0BF2)
|
||||
))
|
||||
|
||||
;; arch-tag: a299bfdc-4543-4405-a4a8-202d178a578f
|
84
etc/nxml/00C00-00C7F.el
Normal file
84
etc/nxml/00C00-00C7F.el
Normal file
|
@ -0,0 +1,84 @@
|
|||
(nxml-define-char-name-set 'telugu
|
||||
'(("TELUGU SIGN CANDRABINDU" #x0C01)
|
||||
("TELUGU SIGN ANUSVARA" #x0C02)
|
||||
("TELUGU SIGN VISARGA" #x0C03)
|
||||
("TELUGU LETTER A" #x0C05)
|
||||
("TELUGU LETTER AA" #x0C06)
|
||||
("TELUGU LETTER I" #x0C07)
|
||||
("TELUGU LETTER II" #x0C08)
|
||||
("TELUGU LETTER U" #x0C09)
|
||||
("TELUGU LETTER UU" #x0C0A)
|
||||
("TELUGU LETTER VOCALIC R" #x0C0B)
|
||||
("TELUGU LETTER VOCALIC L" #x0C0C)
|
||||
("TELUGU LETTER E" #x0C0E)
|
||||
("TELUGU LETTER EE" #x0C0F)
|
||||
("TELUGU LETTER AI" #x0C10)
|
||||
("TELUGU LETTER O" #x0C12)
|
||||
("TELUGU LETTER OO" #x0C13)
|
||||
("TELUGU LETTER AU" #x0C14)
|
||||
("TELUGU LETTER KA" #x0C15)
|
||||
("TELUGU LETTER KHA" #x0C16)
|
||||
("TELUGU LETTER GA" #x0C17)
|
||||
("TELUGU LETTER GHA" #x0C18)
|
||||
("TELUGU LETTER NGA" #x0C19)
|
||||
("TELUGU LETTER CA" #x0C1A)
|
||||
("TELUGU LETTER CHA" #x0C1B)
|
||||
("TELUGU LETTER JA" #x0C1C)
|
||||
("TELUGU LETTER JHA" #x0C1D)
|
||||
("TELUGU LETTER NYA" #x0C1E)
|
||||
("TELUGU LETTER TTA" #x0C1F)
|
||||
("TELUGU LETTER TTHA" #x0C20)
|
||||
("TELUGU LETTER DDA" #x0C21)
|
||||
("TELUGU LETTER DDHA" #x0C22)
|
||||
("TELUGU LETTER NNA" #x0C23)
|
||||
("TELUGU LETTER TA" #x0C24)
|
||||
("TELUGU LETTER THA" #x0C25)
|
||||
("TELUGU LETTER DA" #x0C26)
|
||||
("TELUGU LETTER DHA" #x0C27)
|
||||
("TELUGU LETTER NA" #x0C28)
|
||||
("TELUGU LETTER PA" #x0C2A)
|
||||
("TELUGU LETTER PHA" #x0C2B)
|
||||
("TELUGU LETTER BA" #x0C2C)
|
||||
("TELUGU LETTER BHA" #x0C2D)
|
||||
("TELUGU LETTER MA" #x0C2E)
|
||||
("TELUGU LETTER YA" #x0C2F)
|
||||
("TELUGU LETTER RA" #x0C30)
|
||||
("TELUGU LETTER RRA" #x0C31)
|
||||
("TELUGU LETTER LA" #x0C32)
|
||||
("TELUGU LETTER LLA" #x0C33)
|
||||
("TELUGU LETTER VA" #x0C35)
|
||||
("TELUGU LETTER SHA" #x0C36)
|
||||
("TELUGU LETTER SSA" #x0C37)
|
||||
("TELUGU LETTER SA" #x0C38)
|
||||
("TELUGU LETTER HA" #x0C39)
|
||||
("TELUGU VOWEL SIGN AA" #x0C3E)
|
||||
("TELUGU VOWEL SIGN I" #x0C3F)
|
||||
("TELUGU VOWEL SIGN II" #x0C40)
|
||||
("TELUGU VOWEL SIGN U" #x0C41)
|
||||
("TELUGU VOWEL SIGN UU" #x0C42)
|
||||
("TELUGU VOWEL SIGN VOCALIC R" #x0C43)
|
||||
("TELUGU VOWEL SIGN VOCALIC RR" #x0C44)
|
||||
("TELUGU VOWEL SIGN E" #x0C46)
|
||||
("TELUGU VOWEL SIGN EE" #x0C47)
|
||||
("TELUGU VOWEL SIGN AI" #x0C48)
|
||||
("TELUGU VOWEL SIGN O" #x0C4A)
|
||||
("TELUGU VOWEL SIGN OO" #x0C4B)
|
||||
("TELUGU VOWEL SIGN AU" #x0C4C)
|
||||
("TELUGU SIGN VIRAMA" #x0C4D)
|
||||
("TELUGU LENGTH MARK" #x0C55)
|
||||
("TELUGU AI LENGTH MARK" #x0C56)
|
||||
("TELUGU LETTER VOCALIC RR" #x0C60)
|
||||
("TELUGU LETTER VOCALIC LL" #x0C61)
|
||||
("TELUGU DIGIT ZERO" #x0C66)
|
||||
("TELUGU DIGIT ONE" #x0C67)
|
||||
("TELUGU DIGIT TWO" #x0C68)
|
||||
("TELUGU DIGIT THREE" #x0C69)
|
||||
("TELUGU DIGIT FOUR" #x0C6A)
|
||||
("TELUGU DIGIT FIVE" #x0C6B)
|
||||
("TELUGU DIGIT SIX" #x0C6C)
|
||||
("TELUGU DIGIT SEVEN" #x0C6D)
|
||||
("TELUGU DIGIT EIGHT" #x0C6E)
|
||||
("TELUGU DIGIT NINE" #x0C6F)
|
||||
))
|
||||
|
||||
;; arch-tag: 12e2c9a2-fa3a-400a-9adb-82a89e0a639b
|
84
etc/nxml/00C80-00CFF.el
Normal file
84
etc/nxml/00C80-00CFF.el
Normal file
|
@ -0,0 +1,84 @@
|
|||
(nxml-define-char-name-set 'kannada
|
||||
'(("KANNADA SIGN ANUSVARA" #x0C82)
|
||||
("KANNADA SIGN VISARGA" #x0C83)
|
||||
("KANNADA LETTER A" #x0C85)
|
||||
("KANNADA LETTER AA" #x0C86)
|
||||
("KANNADA LETTER I" #x0C87)
|
||||
("KANNADA LETTER II" #x0C88)
|
||||
("KANNADA LETTER U" #x0C89)
|
||||
("KANNADA LETTER UU" #x0C8A)
|
||||
("KANNADA LETTER VOCALIC R" #x0C8B)
|
||||
("KANNADA LETTER VOCALIC L" #x0C8C)
|
||||
("KANNADA LETTER E" #x0C8E)
|
||||
("KANNADA LETTER EE" #x0C8F)
|
||||
("KANNADA LETTER AI" #x0C90)
|
||||
("KANNADA LETTER O" #x0C92)
|
||||
("KANNADA LETTER OO" #x0C93)
|
||||
("KANNADA LETTER AU" #x0C94)
|
||||
("KANNADA LETTER KA" #x0C95)
|
||||
("KANNADA LETTER KHA" #x0C96)
|
||||
("KANNADA LETTER GA" #x0C97)
|
||||
("KANNADA LETTER GHA" #x0C98)
|
||||
("KANNADA LETTER NGA" #x0C99)
|
||||
("KANNADA LETTER CA" #x0C9A)
|
||||
("KANNADA LETTER CHA" #x0C9B)
|
||||
("KANNADA LETTER JA" #x0C9C)
|
||||
("KANNADA LETTER JHA" #x0C9D)
|
||||
("KANNADA LETTER NYA" #x0C9E)
|
||||
("KANNADA LETTER TTA" #x0C9F)
|
||||
("KANNADA LETTER TTHA" #x0CA0)
|
||||
("KANNADA LETTER DDA" #x0CA1)
|
||||
("KANNADA LETTER DDHA" #x0CA2)
|
||||
("KANNADA LETTER NNA" #x0CA3)
|
||||
("KANNADA LETTER TA" #x0CA4)
|
||||
("KANNADA LETTER THA" #x0CA5)
|
||||
("KANNADA LETTER DA" #x0CA6)
|
||||
("KANNADA LETTER DHA" #x0CA7)
|
||||
("KANNADA LETTER NA" #x0CA8)
|
||||
("KANNADA LETTER PA" #x0CAA)
|
||||
("KANNADA LETTER PHA" #x0CAB)
|
||||
("KANNADA LETTER BA" #x0CAC)
|
||||
("KANNADA LETTER BHA" #x0CAD)
|
||||
("KANNADA LETTER MA" #x0CAE)
|
||||
("KANNADA LETTER YA" #x0CAF)
|
||||
("KANNADA LETTER RA" #x0CB0)
|
||||
("KANNADA LETTER RRA" #x0CB1)
|
||||
("KANNADA LETTER LA" #x0CB2)
|
||||
("KANNADA LETTER LLA" #x0CB3)
|
||||
("KANNADA LETTER VA" #x0CB5)
|
||||
("KANNADA LETTER SHA" #x0CB6)
|
||||
("KANNADA LETTER SSA" #x0CB7)
|
||||
("KANNADA LETTER SA" #x0CB8)
|
||||
("KANNADA LETTER HA" #x0CB9)
|
||||
("KANNADA VOWEL SIGN AA" #x0CBE)
|
||||
("KANNADA VOWEL SIGN I" #x0CBF)
|
||||
("KANNADA VOWEL SIGN II" #x0CC0)
|
||||
("KANNADA VOWEL SIGN U" #x0CC1)
|
||||
("KANNADA VOWEL SIGN UU" #x0CC2)
|
||||
("KANNADA VOWEL SIGN VOCALIC R" #x0CC3)
|
||||
("KANNADA VOWEL SIGN VOCALIC RR" #x0CC4)
|
||||
("KANNADA VOWEL SIGN E" #x0CC6)
|
||||
("KANNADA VOWEL SIGN EE" #x0CC7)
|
||||
("KANNADA VOWEL SIGN AI" #x0CC8)
|
||||
("KANNADA VOWEL SIGN O" #x0CCA)
|
||||
("KANNADA VOWEL SIGN OO" #x0CCB)
|
||||
("KANNADA VOWEL SIGN AU" #x0CCC)
|
||||
("KANNADA SIGN VIRAMA" #x0CCD)
|
||||
("KANNADA LENGTH MARK" #x0CD5)
|
||||
("KANNADA AI LENGTH MARK" #x0CD6)
|
||||
("KANNADA LETTER FA" #x0CDE)
|
||||
("KANNADA LETTER VOCALIC RR" #x0CE0)
|
||||
("KANNADA LETTER VOCALIC LL" #x0CE1)
|
||||
("KANNADA DIGIT ZERO" #x0CE6)
|
||||
("KANNADA DIGIT ONE" #x0CE7)
|
||||
("KANNADA DIGIT TWO" #x0CE8)
|
||||
("KANNADA DIGIT THREE" #x0CE9)
|
||||
("KANNADA DIGIT FOUR" #x0CEA)
|
||||
("KANNADA DIGIT FIVE" #x0CEB)
|
||||
("KANNADA DIGIT SIX" #x0CEC)
|
||||
("KANNADA DIGIT SEVEN" #x0CED)
|
||||
("KANNADA DIGIT EIGHT" #x0CEE)
|
||||
("KANNADA DIGIT NINE" #x0CEF)
|
||||
))
|
||||
|
||||
;; arch-tag: b17f4e00-00e9-4e2f-8343-37b9c8e29e89
|
82
etc/nxml/00D00-00D7F.el
Normal file
82
etc/nxml/00D00-00D7F.el
Normal file
|
@ -0,0 +1,82 @@
|
|||
(nxml-define-char-name-set 'malayalam
|
||||
'(("MALAYALAM SIGN ANUSVARA" #x0D02)
|
||||
("MALAYALAM SIGN VISARGA" #x0D03)
|
||||
("MALAYALAM LETTER A" #x0D05)
|
||||
("MALAYALAM LETTER AA" #x0D06)
|
||||
("MALAYALAM LETTER I" #x0D07)
|
||||
("MALAYALAM LETTER II" #x0D08)
|
||||
("MALAYALAM LETTER U" #x0D09)
|
||||
("MALAYALAM LETTER UU" #x0D0A)
|
||||
("MALAYALAM LETTER VOCALIC R" #x0D0B)
|
||||
("MALAYALAM LETTER VOCALIC L" #x0D0C)
|
||||
("MALAYALAM LETTER E" #x0D0E)
|
||||
("MALAYALAM LETTER EE" #x0D0F)
|
||||
("MALAYALAM LETTER AI" #x0D10)
|
||||
("MALAYALAM LETTER O" #x0D12)
|
||||
("MALAYALAM LETTER OO" #x0D13)
|
||||
("MALAYALAM LETTER AU" #x0D14)
|
||||
("MALAYALAM LETTER KA" #x0D15)
|
||||
("MALAYALAM LETTER KHA" #x0D16)
|
||||
("MALAYALAM LETTER GA" #x0D17)
|
||||
("MALAYALAM LETTER GHA" #x0D18)
|
||||
("MALAYALAM LETTER NGA" #x0D19)
|
||||
("MALAYALAM LETTER CA" #x0D1A)
|
||||
("MALAYALAM LETTER CHA" #x0D1B)
|
||||
("MALAYALAM LETTER JA" #x0D1C)
|
||||
("MALAYALAM LETTER JHA" #x0D1D)
|
||||
("MALAYALAM LETTER NYA" #x0D1E)
|
||||
("MALAYALAM LETTER TTA" #x0D1F)
|
||||
("MALAYALAM LETTER TTHA" #x0D20)
|
||||
("MALAYALAM LETTER DDA" #x0D21)
|
||||
("MALAYALAM LETTER DDHA" #x0D22)
|
||||
("MALAYALAM LETTER NNA" #x0D23)
|
||||
("MALAYALAM LETTER TA" #x0D24)
|
||||
("MALAYALAM LETTER THA" #x0D25)
|
||||
("MALAYALAM LETTER DA" #x0D26)
|
||||
("MALAYALAM LETTER DHA" #x0D27)
|
||||
("MALAYALAM LETTER NA" #x0D28)
|
||||
("MALAYALAM LETTER PA" #x0D2A)
|
||||
("MALAYALAM LETTER PHA" #x0D2B)
|
||||
("MALAYALAM LETTER BA" #x0D2C)
|
||||
("MALAYALAM LETTER BHA" #x0D2D)
|
||||
("MALAYALAM LETTER MA" #x0D2E)
|
||||
("MALAYALAM LETTER YA" #x0D2F)
|
||||
("MALAYALAM LETTER RA" #x0D30)
|
||||
("MALAYALAM LETTER RRA" #x0D31)
|
||||
("MALAYALAM LETTER LA" #x0D32)
|
||||
("MALAYALAM LETTER LLA" #x0D33)
|
||||
("MALAYALAM LETTER LLLA" #x0D34)
|
||||
("MALAYALAM LETTER VA" #x0D35)
|
||||
("MALAYALAM LETTER SHA" #x0D36)
|
||||
("MALAYALAM LETTER SSA" #x0D37)
|
||||
("MALAYALAM LETTER SA" #x0D38)
|
||||
("MALAYALAM LETTER HA" #x0D39)
|
||||
("MALAYALAM VOWEL SIGN AA" #x0D3E)
|
||||
("MALAYALAM VOWEL SIGN I" #x0D3F)
|
||||
("MALAYALAM VOWEL SIGN II" #x0D40)
|
||||
("MALAYALAM VOWEL SIGN U" #x0D41)
|
||||
("MALAYALAM VOWEL SIGN UU" #x0D42)
|
||||
("MALAYALAM VOWEL SIGN VOCALIC R" #x0D43)
|
||||
("MALAYALAM VOWEL SIGN E" #x0D46)
|
||||
("MALAYALAM VOWEL SIGN EE" #x0D47)
|
||||
("MALAYALAM VOWEL SIGN AI" #x0D48)
|
||||
("MALAYALAM VOWEL SIGN O" #x0D4A)
|
||||
("MALAYALAM VOWEL SIGN OO" #x0D4B)
|
||||
("MALAYALAM VOWEL SIGN AU" #x0D4C)
|
||||
("MALAYALAM SIGN VIRAMA" #x0D4D)
|
||||
("MALAYALAM AU LENGTH MARK" #x0D57)
|
||||
("MALAYALAM LETTER VOCALIC RR" #x0D60)
|
||||
("MALAYALAM LETTER VOCALIC LL" #x0D61)
|
||||
("MALAYALAM DIGIT ZERO" #x0D66)
|
||||
("MALAYALAM DIGIT ONE" #x0D67)
|
||||
("MALAYALAM DIGIT TWO" #x0D68)
|
||||
("MALAYALAM DIGIT THREE" #x0D69)
|
||||
("MALAYALAM DIGIT FOUR" #x0D6A)
|
||||
("MALAYALAM DIGIT FIVE" #x0D6B)
|
||||
("MALAYALAM DIGIT SIX" #x0D6C)
|
||||
("MALAYALAM DIGIT SEVEN" #x0D6D)
|
||||
("MALAYALAM DIGIT EIGHT" #x0D6E)
|
||||
("MALAYALAM DIGIT NINE" #x0D6F)
|
||||
))
|
||||
|
||||
;; arch-tag: 1bce48f6-bdc3-4ebc-b1f0-1563c32e4926
|
84
etc/nxml/00D80-00DFF.el
Normal file
84
etc/nxml/00D80-00DFF.el
Normal file
|
@ -0,0 +1,84 @@
|
|||
(nxml-define-char-name-set 'sinhala
|
||||
'(("SINHALA SIGN ANUSVARAYA" #x0D82)
|
||||
("SINHALA SIGN VISARGAYA" #x0D83)
|
||||
("SINHALA LETTER AYANNA" #x0D85)
|
||||
("SINHALA LETTER AAYANNA" #x0D86)
|
||||
("SINHALA LETTER AEYANNA" #x0D87)
|
||||
("SINHALA LETTER AEEYANNA" #x0D88)
|
||||
("SINHALA LETTER IYANNA" #x0D89)
|
||||
("SINHALA LETTER IIYANNA" #x0D8A)
|
||||
("SINHALA LETTER UYANNA" #x0D8B)
|
||||
("SINHALA LETTER UUYANNA" #x0D8C)
|
||||
("SINHALA LETTER IRUYANNA" #x0D8D)
|
||||
("SINHALA LETTER IRUUYANNA" #x0D8E)
|
||||
("SINHALA LETTER ILUYANNA" #x0D8F)
|
||||
("SINHALA LETTER ILUUYANNA" #x0D90)
|
||||
("SINHALA LETTER EYANNA" #x0D91)
|
||||
("SINHALA LETTER EEYANNA" #x0D92)
|
||||
("SINHALA LETTER AIYANNA" #x0D93)
|
||||
("SINHALA LETTER OYANNA" #x0D94)
|
||||
("SINHALA LETTER OOYANNA" #x0D95)
|
||||
("SINHALA LETTER AUYANNA" #x0D96)
|
||||
("SINHALA LETTER ALPAPRAANA KAYANNA" #x0D9A)
|
||||
("SINHALA LETTER MAHAAPRAANA KAYANNA" #x0D9B)
|
||||
("SINHALA LETTER ALPAPRAANA GAYANNA" #x0D9C)
|
||||
("SINHALA LETTER MAHAAPRAANA GAYANNA" #x0D9D)
|
||||
("SINHALA LETTER KANTAJA NAASIKYAYA" #x0D9E)
|
||||
("SINHALA LETTER SANYAKA GAYANNA" #x0D9F)
|
||||
("SINHALA LETTER ALPAPRAANA CAYANNA" #x0DA0)
|
||||
("SINHALA LETTER MAHAAPRAANA CAYANNA" #x0DA1)
|
||||
("SINHALA LETTER ALPAPRAANA JAYANNA" #x0DA2)
|
||||
("SINHALA LETTER MAHAAPRAANA JAYANNA" #x0DA3)
|
||||
("SINHALA LETTER TAALUJA NAASIKYAYA" #x0DA4)
|
||||
("SINHALA LETTER TAALUJA SANYOOGA NAAKSIKYAYA" #x0DA5)
|
||||
("SINHALA LETTER SANYAKA JAYANNA" #x0DA6)
|
||||
("SINHALA LETTER ALPAPRAANA TTAYANNA" #x0DA7)
|
||||
("SINHALA LETTER MAHAAPRAANA TTAYANNA" #x0DA8)
|
||||
("SINHALA LETTER ALPAPRAANA DDAYANNA" #x0DA9)
|
||||
("SINHALA LETTER MAHAAPRAANA DDAYANNA" #x0DAA)
|
||||
("SINHALA LETTER MUURDHAJA NAYANNA" #x0DAB)
|
||||
("SINHALA LETTER SANYAKA DDAYANNA" #x0DAC)
|
||||
("SINHALA LETTER ALPAPRAANA TAYANNA" #x0DAD)
|
||||
("SINHALA LETTER MAHAAPRAANA TAYANNA" #x0DAE)
|
||||
("SINHALA LETTER ALPAPRAANA DAYANNA" #x0DAF)
|
||||
("SINHALA LETTER MAHAAPRAANA DAYANNA" #x0DB0)
|
||||
("SINHALA LETTER DANTAJA NAYANNA" #x0DB1)
|
||||
("SINHALA LETTER SANYAKA DAYANNA" #x0DB3)
|
||||
("SINHALA LETTER ALPAPRAANA PAYANNA" #x0DB4)
|
||||
("SINHALA LETTER MAHAAPRAANA PAYANNA" #x0DB5)
|
||||
("SINHALA LETTER ALPAPRAANA BAYANNA" #x0DB6)
|
||||
("SINHALA LETTER MAHAAPRAANA BAYANNA" #x0DB7)
|
||||
("SINHALA LETTER MAYANNA" #x0DB8)
|
||||
("SINHALA LETTER AMBA BAYANNA" #x0DB9)
|
||||
("SINHALA LETTER YAYANNA" #x0DBA)
|
||||
("SINHALA LETTER RAYANNA" #x0DBB)
|
||||
("SINHALA LETTER DANTAJA LAYANNA" #x0DBD)
|
||||
("SINHALA LETTER VAYANNA" #x0DC0)
|
||||
("SINHALA LETTER TAALUJA SAYANNA" #x0DC1)
|
||||
("SINHALA LETTER MUURDHAJA SAYANNA" #x0DC2)
|
||||
("SINHALA LETTER DANTAJA SAYANNA" #x0DC3)
|
||||
("SINHALA LETTER HAYANNA" #x0DC4)
|
||||
("SINHALA LETTER MUURDHAJA LAYANNA" #x0DC5)
|
||||
("SINHALA LETTER FAYANNA" #x0DC6)
|
||||
("SINHALA SIGN AL-LAKUNA" #x0DCA)
|
||||
("SINHALA VOWEL SIGN AELA-PILLA" #x0DCF)
|
||||
("SINHALA VOWEL SIGN KETTI AEDA-PILLA" #x0DD0)
|
||||
("SINHALA VOWEL SIGN DIGA AEDA-PILLA" #x0DD1)
|
||||
("SINHALA VOWEL SIGN KETTI IS-PILLA" #x0DD2)
|
||||
("SINHALA VOWEL SIGN DIGA IS-PILLA" #x0DD3)
|
||||
("SINHALA VOWEL SIGN KETTI PAA-PILLA" #x0DD4)
|
||||
("SINHALA VOWEL SIGN DIGA PAA-PILLA" #x0DD6)
|
||||
("SINHALA VOWEL SIGN GAETTA-PILLA" #x0DD8)
|
||||
("SINHALA VOWEL SIGN KOMBUVA" #x0DD9)
|
||||
("SINHALA VOWEL SIGN DIGA KOMBUVA" #x0DDA)
|
||||
("SINHALA VOWEL SIGN KOMBU DEKA" #x0DDB)
|
||||
("SINHALA VOWEL SIGN KOMBUVA HAA AELA-PILLA" #x0DDC)
|
||||
("SINHALA VOWEL SIGN KOMBUVA HAA DIGA AELA-PILLA" #x0DDD)
|
||||
("SINHALA VOWEL SIGN KOMBUVA HAA GAYANUKITTA" #x0DDE)
|
||||
("SINHALA VOWEL SIGN GAYANUKITTA" #x0DDF)
|
||||
("SINHALA VOWEL SIGN DIGA GAETTA-PILLA" #x0DF2)
|
||||
("SINHALA VOWEL SIGN DIGA GAYANUKITTA" #x0DF3)
|
||||
("SINHALA PUNCTUATION KUNDDALIYA" #x0DF4)
|
||||
))
|
||||
|
||||
;; arch-tag: 3dfac4e1-97f5-433a-bd47-8cd364b09075
|
91
etc/nxml/00E00-00E7F.el
Normal file
91
etc/nxml/00E00-00E7F.el
Normal file
|
@ -0,0 +1,91 @@
|
|||
(nxml-define-char-name-set 'thai
|
||||
'(("THAI CHARACTER KO KAI" #x0E01)
|
||||
("THAI CHARACTER KHO KHAI" #x0E02)
|
||||
("THAI CHARACTER KHO KHUAT" #x0E03)
|
||||
("THAI CHARACTER KHO KHWAI" #x0E04)
|
||||
("THAI CHARACTER KHO KHON" #x0E05)
|
||||
("THAI CHARACTER KHO RAKHANG" #x0E06)
|
||||
("THAI CHARACTER NGO NGU" #x0E07)
|
||||
("THAI CHARACTER CHO CHAN" #x0E08)
|
||||
("THAI CHARACTER CHO CHING" #x0E09)
|
||||
("THAI CHARACTER CHO CHANG" #x0E0A)
|
||||
("THAI CHARACTER SO SO" #x0E0B)
|
||||
("THAI CHARACTER CHO CHOE" #x0E0C)
|
||||
("THAI CHARACTER YO YING" #x0E0D)
|
||||
("THAI CHARACTER DO CHADA" #x0E0E)
|
||||
("THAI CHARACTER TO PATAK" #x0E0F)
|
||||
("THAI CHARACTER THO THAN" #x0E10)
|
||||
("THAI CHARACTER THO NANGMONTHO" #x0E11)
|
||||
("THAI CHARACTER THO PHUTHAO" #x0E12)
|
||||
("THAI CHARACTER NO NEN" #x0E13)
|
||||
("THAI CHARACTER DO DEK" #x0E14)
|
||||
("THAI CHARACTER TO TAO" #x0E15)
|
||||
("THAI CHARACTER THO THUNG" #x0E16)
|
||||
("THAI CHARACTER THO THAHAN" #x0E17)
|
||||
("THAI CHARACTER THO THONG" #x0E18)
|
||||
("THAI CHARACTER NO NU" #x0E19)
|
||||
("THAI CHARACTER BO BAIMAI" #x0E1A)
|
||||
("THAI CHARACTER PO PLA" #x0E1B)
|
||||
("THAI CHARACTER PHO PHUNG" #x0E1C)
|
||||
("THAI CHARACTER FO FA" #x0E1D)
|
||||
("THAI CHARACTER PHO PHAN" #x0E1E)
|
||||
("THAI CHARACTER FO FAN" #x0E1F)
|
||||
("THAI CHARACTER PHO SAMPHAO" #x0E20)
|
||||
("THAI CHARACTER MO MA" #x0E21)
|
||||
("THAI CHARACTER YO YAK" #x0E22)
|
||||
("THAI CHARACTER RO RUA" #x0E23)
|
||||
("THAI CHARACTER RU" #x0E24)
|
||||
("THAI CHARACTER LO LING" #x0E25)
|
||||
("THAI CHARACTER LU" #x0E26)
|
||||
("THAI CHARACTER WO WAEN" #x0E27)
|
||||
("THAI CHARACTER SO SALA" #x0E28)
|
||||
("THAI CHARACTER SO RUSI" #x0E29)
|
||||
("THAI CHARACTER SO SUA" #x0E2A)
|
||||
("THAI CHARACTER HO HIP" #x0E2B)
|
||||
("THAI CHARACTER LO CHULA" #x0E2C)
|
||||
("THAI CHARACTER O ANG" #x0E2D)
|
||||
("THAI CHARACTER HO NOKHUK" #x0E2E)
|
||||
("THAI CHARACTER PAIYANNOI" #x0E2F)
|
||||
("THAI CHARACTER SARA A" #x0E30)
|
||||
("THAI CHARACTER MAI HAN-AKAT" #x0E31)
|
||||
("THAI CHARACTER SARA AA" #x0E32)
|
||||
("THAI CHARACTER SARA AM" #x0E33)
|
||||
("THAI CHARACTER SARA I" #x0E34)
|
||||
("THAI CHARACTER SARA II" #x0E35)
|
||||
("THAI CHARACTER SARA UE" #x0E36)
|
||||
("THAI CHARACTER SARA UEE" #x0E37)
|
||||
("THAI CHARACTER SARA U" #x0E38)
|
||||
("THAI CHARACTER SARA UU" #x0E39)
|
||||
("THAI CHARACTER PHINTHU" #x0E3A)
|
||||
("THAI CURRENCY SYMBOL BAHT" #x0E3F)
|
||||
("THAI CHARACTER SARA E" #x0E40)
|
||||
("THAI CHARACTER SARA AE" #x0E41)
|
||||
("THAI CHARACTER SARA O" #x0E42)
|
||||
("THAI CHARACTER SARA AI MAIMUAN" #x0E43)
|
||||
("THAI CHARACTER SARA AI MAIMALAI" #x0E44)
|
||||
("THAI CHARACTER LAKKHANGYAO" #x0E45)
|
||||
("THAI CHARACTER MAIYAMOK" #x0E46)
|
||||
("THAI CHARACTER MAITAIKHU" #x0E47)
|
||||
("THAI CHARACTER MAI EK" #x0E48)
|
||||
("THAI CHARACTER MAI THO" #x0E49)
|
||||
("THAI CHARACTER MAI TRI" #x0E4A)
|
||||
("THAI CHARACTER MAI CHATTAWA" #x0E4B)
|
||||
("THAI CHARACTER THANTHAKHAT" #x0E4C)
|
||||
("THAI CHARACTER NIKHAHIT" #x0E4D)
|
||||
("THAI CHARACTER YAMAKKAN" #x0E4E)
|
||||
("THAI CHARACTER FONGMAN" #x0E4F)
|
||||
("THAI DIGIT ZERO" #x0E50)
|
||||
("THAI DIGIT ONE" #x0E51)
|
||||
("THAI DIGIT TWO" #x0E52)
|
||||
("THAI DIGIT THREE" #x0E53)
|
||||
("THAI DIGIT FOUR" #x0E54)
|
||||
("THAI DIGIT FIVE" #x0E55)
|
||||
("THAI DIGIT SIX" #x0E56)
|
||||
("THAI DIGIT SEVEN" #x0E57)
|
||||
("THAI DIGIT EIGHT" #x0E58)
|
||||
("THAI DIGIT NINE" #x0E59)
|
||||
("THAI CHARACTER ANGKHANKHU" #x0E5A)
|
||||
("THAI CHARACTER KHOMUT" #x0E5B)
|
||||
))
|
||||
|
||||
;; arch-tag: cf6119b0-ae54-4871-a8a7-10621d74cba8
|
69
etc/nxml/00E80-00EFF.el
Normal file
69
etc/nxml/00E80-00EFF.el
Normal file
|
@ -0,0 +1,69 @@
|
|||
(nxml-define-char-name-set 'lao
|
||||
'(("LAO LETTER KO" #x0E81)
|
||||
("LAO LETTER KHO SUNG" #x0E82)
|
||||
("LAO LETTER KHO TAM" #x0E84)
|
||||
("LAO LETTER NGO" #x0E87)
|
||||
("LAO LETTER CO" #x0E88)
|
||||
("LAO LETTER SO TAM" #x0E8A)
|
||||
("LAO LETTER NYO" #x0E8D)
|
||||
("LAO LETTER DO" #x0E94)
|
||||
("LAO LETTER TO" #x0E95)
|
||||
("LAO LETTER THO SUNG" #x0E96)
|
||||
("LAO LETTER THO TAM" #x0E97)
|
||||
("LAO LETTER NO" #x0E99)
|
||||
("LAO LETTER BO" #x0E9A)
|
||||
("LAO LETTER PO" #x0E9B)
|
||||
("LAO LETTER PHO SUNG" #x0E9C)
|
||||
("LAO LETTER FO TAM" #x0E9D)
|
||||
("LAO LETTER PHO TAM" #x0E9E)
|
||||
("LAO LETTER FO SUNG" #x0E9F)
|
||||
("LAO LETTER MO" #x0EA1)
|
||||
("LAO LETTER YO" #x0EA2)
|
||||
("LAO LETTER LO LING" #x0EA3)
|
||||
("LAO LETTER LO LOOT" #x0EA5)
|
||||
("LAO LETTER WO" #x0EA7)
|
||||
("LAO LETTER SO SUNG" #x0EAA)
|
||||
("LAO LETTER HO SUNG" #x0EAB)
|
||||
("LAO LETTER O" #x0EAD)
|
||||
("LAO LETTER HO TAM" #x0EAE)
|
||||
("LAO ELLIPSIS" #x0EAF)
|
||||
("LAO VOWEL SIGN A" #x0EB0)
|
||||
("LAO VOWEL SIGN MAI KAN" #x0EB1)
|
||||
("LAO VOWEL SIGN AA" #x0EB2)
|
||||
("LAO VOWEL SIGN AM" #x0EB3)
|
||||
("LAO VOWEL SIGN I" #x0EB4)
|
||||
("LAO VOWEL SIGN II" #x0EB5)
|
||||
("LAO VOWEL SIGN Y" #x0EB6)
|
||||
("LAO VOWEL SIGN YY" #x0EB7)
|
||||
("LAO VOWEL SIGN U" #x0EB8)
|
||||
("LAO VOWEL SIGN UU" #x0EB9)
|
||||
("LAO VOWEL SIGN MAI KON" #x0EBB)
|
||||
("LAO SEMIVOWEL SIGN LO" #x0EBC)
|
||||
("LAO SEMIVOWEL SIGN NYO" #x0EBD)
|
||||
("LAO VOWEL SIGN E" #x0EC0)
|
||||
("LAO VOWEL SIGN EI" #x0EC1)
|
||||
("LAO VOWEL SIGN O" #x0EC2)
|
||||
("LAO VOWEL SIGN AY" #x0EC3)
|
||||
("LAO VOWEL SIGN AI" #x0EC4)
|
||||
("LAO KO LA" #x0EC6)
|
||||
("LAO TONE MAI EK" #x0EC8)
|
||||
("LAO TONE MAI THO" #x0EC9)
|
||||
("LAO TONE MAI TI" #x0ECA)
|
||||
("LAO TONE MAI CATAWA" #x0ECB)
|
||||
("LAO CANCELLATION MARK" #x0ECC)
|
||||
("LAO NIGGAHITA" #x0ECD)
|
||||
("LAO DIGIT ZERO" #x0ED0)
|
||||
("LAO DIGIT ONE" #x0ED1)
|
||||
("LAO DIGIT TWO" #x0ED2)
|
||||
("LAO DIGIT THREE" #x0ED3)
|
||||
("LAO DIGIT FOUR" #x0ED4)
|
||||
("LAO DIGIT FIVE" #x0ED5)
|
||||
("LAO DIGIT SIX" #x0ED6)
|
||||
("LAO DIGIT SEVEN" #x0ED7)
|
||||
("LAO DIGIT EIGHT" #x0ED8)
|
||||
("LAO DIGIT NINE" #x0ED9)
|
||||
("LAO HO NO" #x0EDC)
|
||||
("LAO HO MO" #x0EDD)
|
||||
))
|
||||
|
||||
;; arch-tag: 36f98cb4-447d-49e0-bae5-03a026adabac
|
197
etc/nxml/00F00-00FFF.el
Normal file
197
etc/nxml/00F00-00FFF.el
Normal file
|
@ -0,0 +1,197 @@
|
|||
(nxml-define-char-name-set 'tibetan
|
||||
'(("TIBETAN SYLLABLE OM" #x0F00)
|
||||
("TIBETAN MARK GTER YIG MGO TRUNCATED A" #x0F01)
|
||||
("TIBETAN MARK GTER YIG MGO -UM RNAM BCAD MA" #x0F02)
|
||||
("TIBETAN MARK GTER YIG MGO -UM GTER TSHEG MA" #x0F03)
|
||||
("TIBETAN MARK INITIAL YIG MGO MDUN MA" #x0F04)
|
||||
("TIBETAN MARK CLOSING YIG MGO SGAB MA" #x0F05)
|
||||
("TIBETAN MARK CARET YIG MGO PHUR SHAD MA" #x0F06)
|
||||
("TIBETAN MARK YIG MGO TSHEG SHAD MA" #x0F07)
|
||||
("TIBETAN MARK SBRUL SHAD" #x0F08)
|
||||
("TIBETAN MARK BSKUR YIG MGO" #x0F09)
|
||||
("TIBETAN MARK BKA- SHOG YIG MGO" #x0F0A)
|
||||
("TIBETAN MARK INTERSYLLABIC TSHEG" #x0F0B)
|
||||
("TIBETAN MARK DELIMITER TSHEG BSTAR" #x0F0C)
|
||||
("TIBETAN MARK SHAD" #x0F0D)
|
||||
("TIBETAN MARK NYIS SHAD" #x0F0E)
|
||||
("TIBETAN MARK TSHEG SHAD" #x0F0F)
|
||||
("TIBETAN MARK NYIS TSHEG SHAD" #x0F10)
|
||||
("TIBETAN MARK RIN CHEN SPUNGS SHAD" #x0F11)
|
||||
("TIBETAN MARK RGYA GRAM SHAD" #x0F12)
|
||||
("TIBETAN MARK CARET -DZUD RTAGS ME LONG CAN" #x0F13)
|
||||
("TIBETAN MARK GTER TSHEG" #x0F14)
|
||||
("TIBETAN LOGOTYPE SIGN CHAD RTAGS" #x0F15)
|
||||
("TIBETAN LOGOTYPE SIGN LHAG RTAGS" #x0F16)
|
||||
("TIBETAN ASTROLOGICAL SIGN SGRA GCAN -CHAR RTAGS" #x0F17)
|
||||
("TIBETAN ASTROLOGICAL SIGN -KHYUD PA" #x0F18)
|
||||
("TIBETAN ASTROLOGICAL SIGN SDONG TSHUGS" #x0F19)
|
||||
("TIBETAN SIGN RDEL DKAR GCIG" #x0F1A)
|
||||
("TIBETAN SIGN RDEL DKAR GNYIS" #x0F1B)
|
||||
("TIBETAN SIGN RDEL DKAR GSUM" #x0F1C)
|
||||
("TIBETAN SIGN RDEL NAG GCIG" #x0F1D)
|
||||
("TIBETAN SIGN RDEL NAG GNYIS" #x0F1E)
|
||||
("TIBETAN SIGN RDEL DKAR RDEL NAG" #x0F1F)
|
||||
("TIBETAN DIGIT ZERO" #x0F20)
|
||||
("TIBETAN DIGIT ONE" #x0F21)
|
||||
("TIBETAN DIGIT TWO" #x0F22)
|
||||
("TIBETAN DIGIT THREE" #x0F23)
|
||||
("TIBETAN DIGIT FOUR" #x0F24)
|
||||
("TIBETAN DIGIT FIVE" #x0F25)
|
||||
("TIBETAN DIGIT SIX" #x0F26)
|
||||
("TIBETAN DIGIT SEVEN" #x0F27)
|
||||
("TIBETAN DIGIT EIGHT" #x0F28)
|
||||
("TIBETAN DIGIT NINE" #x0F29)
|
||||
("TIBETAN DIGIT HALF ONE" #x0F2A)
|
||||
("TIBETAN DIGIT HALF TWO" #x0F2B)
|
||||
("TIBETAN DIGIT HALF THREE" #x0F2C)
|
||||
("TIBETAN DIGIT HALF FOUR" #x0F2D)
|
||||
("TIBETAN DIGIT HALF FIVE" #x0F2E)
|
||||
("TIBETAN DIGIT HALF SIX" #x0F2F)
|
||||
("TIBETAN DIGIT HALF SEVEN" #x0F30)
|
||||
("TIBETAN DIGIT HALF EIGHT" #x0F31)
|
||||
("TIBETAN DIGIT HALF NINE" #x0F32)
|
||||
("TIBETAN DIGIT HALF ZERO" #x0F33)
|
||||
("TIBETAN MARK BSDUS RTAGS" #x0F34)
|
||||
("TIBETAN MARK NGAS BZUNG NYI ZLA" #x0F35)
|
||||
("TIBETAN MARK CARET -DZUD RTAGS BZHI MIG CAN" #x0F36)
|
||||
("TIBETAN MARK NGAS BZUNG SGOR RTAGS" #x0F37)
|
||||
("TIBETAN MARK CHE MGO" #x0F38)
|
||||
("TIBETAN MARK TSA -PHRU" #x0F39)
|
||||
("TIBETAN MARK GUG RTAGS GYON" #x0F3A)
|
||||
("TIBETAN MARK GUG RTAGS GYAS" #x0F3B)
|
||||
("TIBETAN MARK ANG KHANG GYON" #x0F3C)
|
||||
("TIBETAN MARK ANG KHANG GYAS" #x0F3D)
|
||||
("TIBETAN SIGN YAR TSHES" #x0F3E)
|
||||
("TIBETAN SIGN MAR TSHES" #x0F3F)
|
||||
("TIBETAN LETTER KA" #x0F40)
|
||||
("TIBETAN LETTER KHA" #x0F41)
|
||||
("TIBETAN LETTER GA" #x0F42)
|
||||
("TIBETAN LETTER GHA" #x0F43)
|
||||
("TIBETAN LETTER NGA" #x0F44)
|
||||
("TIBETAN LETTER CA" #x0F45)
|
||||
("TIBETAN LETTER CHA" #x0F46)
|
||||
("TIBETAN LETTER JA" #x0F47)
|
||||
("TIBETAN LETTER NYA" #x0F49)
|
||||
("TIBETAN LETTER TTA" #x0F4A)
|
||||
("TIBETAN LETTER TTHA" #x0F4B)
|
||||
("TIBETAN LETTER DDA" #x0F4C)
|
||||
("TIBETAN LETTER DDHA" #x0F4D)
|
||||
("TIBETAN LETTER NNA" #x0F4E)
|
||||
("TIBETAN LETTER TA" #x0F4F)
|
||||
("TIBETAN LETTER THA" #x0F50)
|
||||
("TIBETAN LETTER DA" #x0F51)
|
||||
("TIBETAN LETTER DHA" #x0F52)
|
||||
("TIBETAN LETTER NA" #x0F53)
|
||||
("TIBETAN LETTER PA" #x0F54)
|
||||
("TIBETAN LETTER PHA" #x0F55)
|
||||
("TIBETAN LETTER BA" #x0F56)
|
||||
("TIBETAN LETTER BHA" #x0F57)
|
||||
("TIBETAN LETTER MA" #x0F58)
|
||||
("TIBETAN LETTER TSA" #x0F59)
|
||||
("TIBETAN LETTER TSHA" #x0F5A)
|
||||
("TIBETAN LETTER DZA" #x0F5B)
|
||||
("TIBETAN LETTER DZHA" #x0F5C)
|
||||
("TIBETAN LETTER WA" #x0F5D)
|
||||
("TIBETAN LETTER ZHA" #x0F5E)
|
||||
("TIBETAN LETTER ZA" #x0F5F)
|
||||
("TIBETAN LETTER -A" #x0F60)
|
||||
("TIBETAN LETTER YA" #x0F61)
|
||||
("TIBETAN LETTER RA" #x0F62)
|
||||
("TIBETAN LETTER LA" #x0F63)
|
||||
("TIBETAN LETTER SHA" #x0F64)
|
||||
("TIBETAN LETTER SSA" #x0F65)
|
||||
("TIBETAN LETTER SA" #x0F66)
|
||||
("TIBETAN LETTER HA" #x0F67)
|
||||
("TIBETAN LETTER A" #x0F68)
|
||||
("TIBETAN LETTER KSSA" #x0F69)
|
||||
("TIBETAN LETTER FIXED-FORM RA" #x0F6A)
|
||||
("TIBETAN VOWEL SIGN AA" #x0F71)
|
||||
("TIBETAN VOWEL SIGN I" #x0F72)
|
||||
("TIBETAN VOWEL SIGN II" #x0F73)
|
||||
("TIBETAN VOWEL SIGN U" #x0F74)
|
||||
("TIBETAN VOWEL SIGN UU" #x0F75)
|
||||
("TIBETAN VOWEL SIGN VOCALIC R" #x0F76)
|
||||
("TIBETAN VOWEL SIGN VOCALIC RR" #x0F77)
|
||||
("TIBETAN VOWEL SIGN VOCALIC L" #x0F78)
|
||||
("TIBETAN VOWEL SIGN VOCALIC LL" #x0F79)
|
||||
("TIBETAN VOWEL SIGN E" #x0F7A)
|
||||
("TIBETAN VOWEL SIGN EE" #x0F7B)
|
||||
("TIBETAN VOWEL SIGN O" #x0F7C)
|
||||
("TIBETAN VOWEL SIGN OO" #x0F7D)
|
||||
("TIBETAN SIGN RJES SU NGA RO" #x0F7E)
|
||||
("TIBETAN SIGN RNAM BCAD" #x0F7F)
|
||||
("TIBETAN VOWEL SIGN REVERSED I" #x0F80)
|
||||
("TIBETAN VOWEL SIGN REVERSED II" #x0F81)
|
||||
("TIBETAN SIGN NYI ZLA NAA DA" #x0F82)
|
||||
("TIBETAN SIGN SNA LDAN" #x0F83)
|
||||
("TIBETAN MARK HALANTA" #x0F84)
|
||||
("TIBETAN MARK PALUTA" #x0F85)
|
||||
("TIBETAN SIGN LCI RTAGS" #x0F86)
|
||||
("TIBETAN SIGN YANG RTAGS" #x0F87)
|
||||
("TIBETAN SIGN LCE TSA CAN" #x0F88)
|
||||
("TIBETAN SIGN MCHU CAN" #x0F89)
|
||||
("TIBETAN SIGN GRU CAN RGYINGS" #x0F8A)
|
||||
("TIBETAN SIGN GRU MED RGYINGS" #x0F8B)
|
||||
("TIBETAN SUBJOINED LETTER KA" #x0F90)
|
||||
("TIBETAN SUBJOINED LETTER KHA" #x0F91)
|
||||
("TIBETAN SUBJOINED LETTER GA" #x0F92)
|
||||
("TIBETAN SUBJOINED LETTER GHA" #x0F93)
|
||||
("TIBETAN SUBJOINED LETTER NGA" #x0F94)
|
||||
("TIBETAN SUBJOINED LETTER CA" #x0F95)
|
||||
("TIBETAN SUBJOINED LETTER CHA" #x0F96)
|
||||
("TIBETAN SUBJOINED LETTER JA" #x0F97)
|
||||
("TIBETAN SUBJOINED LETTER NYA" #x0F99)
|
||||
("TIBETAN SUBJOINED LETTER TTA" #x0F9A)
|
||||
("TIBETAN SUBJOINED LETTER TTHA" #x0F9B)
|
||||
("TIBETAN SUBJOINED LETTER DDA" #x0F9C)
|
||||
("TIBETAN SUBJOINED LETTER DDHA" #x0F9D)
|
||||
("TIBETAN SUBJOINED LETTER NNA" #x0F9E)
|
||||
("TIBETAN SUBJOINED LETTER TA" #x0F9F)
|
||||
("TIBETAN SUBJOINED LETTER THA" #x0FA0)
|
||||
("TIBETAN SUBJOINED LETTER DA" #x0FA1)
|
||||
("TIBETAN SUBJOINED LETTER DHA" #x0FA2)
|
||||
("TIBETAN SUBJOINED LETTER NA" #x0FA3)
|
||||
("TIBETAN SUBJOINED LETTER PA" #x0FA4)
|
||||
("TIBETAN SUBJOINED LETTER PHA" #x0FA5)
|
||||
("TIBETAN SUBJOINED LETTER BA" #x0FA6)
|
||||
("TIBETAN SUBJOINED LETTER BHA" #x0FA7)
|
||||
("TIBETAN SUBJOINED LETTER MA" #x0FA8)
|
||||
("TIBETAN SUBJOINED LETTER TSA" #x0FA9)
|
||||
("TIBETAN SUBJOINED LETTER TSHA" #x0FAA)
|
||||
("TIBETAN SUBJOINED LETTER DZA" #x0FAB)
|
||||
("TIBETAN SUBJOINED LETTER DZHA" #x0FAC)
|
||||
("TIBETAN SUBJOINED LETTER WA" #x0FAD)
|
||||
("TIBETAN SUBJOINED LETTER ZHA" #x0FAE)
|
||||
("TIBETAN SUBJOINED LETTER ZA" #x0FAF)
|
||||
("TIBETAN SUBJOINED LETTER -A" #x0FB0)
|
||||
("TIBETAN SUBJOINED LETTER YA" #x0FB1)
|
||||
("TIBETAN SUBJOINED LETTER RA" #x0FB2)
|
||||
("TIBETAN SUBJOINED LETTER LA" #x0FB3)
|
||||
("TIBETAN SUBJOINED LETTER SHA" #x0FB4)
|
||||
("TIBETAN SUBJOINED LETTER SSA" #x0FB5)
|
||||
("TIBETAN SUBJOINED LETTER SA" #x0FB6)
|
||||
("TIBETAN SUBJOINED LETTER HA" #x0FB7)
|
||||
("TIBETAN SUBJOINED LETTER A" #x0FB8)
|
||||
("TIBETAN SUBJOINED LETTER KSSA" #x0FB9)
|
||||
("TIBETAN SUBJOINED LETTER FIXED-FORM WA" #x0FBA)
|
||||
("TIBETAN SUBJOINED LETTER FIXED-FORM YA" #x0FBB)
|
||||
("TIBETAN SUBJOINED LETTER FIXED-FORM RA" #x0FBC)
|
||||
("TIBETAN KU RU KHA" #x0FBE)
|
||||
("TIBETAN KU RU KHA BZHI MIG CAN" #x0FBF)
|
||||
("TIBETAN CANTILLATION SIGN HEAVY BEAT" #x0FC0)
|
||||
("TIBETAN CANTILLATION SIGN LIGHT BEAT" #x0FC1)
|
||||
("TIBETAN CANTILLATION SIGN CANG TE-U" #x0FC2)
|
||||
("TIBETAN CANTILLATION SIGN SBUB -CHAL" #x0FC3)
|
||||
("TIBETAN SYMBOL DRIL BU" #x0FC4)
|
||||
("TIBETAN SYMBOL RDO RJE" #x0FC5)
|
||||
("TIBETAN SYMBOL PADMA GDAN" #x0FC6)
|
||||
("TIBETAN SYMBOL RDO RJE RGYA GRAM" #x0FC7)
|
||||
("TIBETAN SYMBOL PHUR PA" #x0FC8)
|
||||
("TIBETAN SYMBOL NOR BU" #x0FC9)
|
||||
("TIBETAN SYMBOL NOR BU NYIS -KHYIL" #x0FCA)
|
||||
("TIBETAN SYMBOL NOR BU GSUM -KHYIL" #x0FCB)
|
||||
("TIBETAN SYMBOL NOR BU BZHI -KHYIL" #x0FCC)
|
||||
("TIBETAN SIGN RDEL NAG GSUM" #x0FCF)
|
||||
))
|
||||
|
||||
;; arch-tag: 547e48c6-3ded-4dc7-be69-4ee324c604c3
|
82
etc/nxml/01000-0109F.el
Normal file
82
etc/nxml/01000-0109F.el
Normal file
|
@ -0,0 +1,82 @@
|
|||
(nxml-define-char-name-set 'myanmar
|
||||
'(("MYANMAR LETTER KA" #x1000)
|
||||
("MYANMAR LETTER KHA" #x1001)
|
||||
("MYANMAR LETTER GA" #x1002)
|
||||
("MYANMAR LETTER GHA" #x1003)
|
||||
("MYANMAR LETTER NGA" #x1004)
|
||||
("MYANMAR LETTER CA" #x1005)
|
||||
("MYANMAR LETTER CHA" #x1006)
|
||||
("MYANMAR LETTER JA" #x1007)
|
||||
("MYANMAR LETTER JHA" #x1008)
|
||||
("MYANMAR LETTER NYA" #x1009)
|
||||
("MYANMAR LETTER NNYA" #x100A)
|
||||
("MYANMAR LETTER TTA" #x100B)
|
||||
("MYANMAR LETTER TTHA" #x100C)
|
||||
("MYANMAR LETTER DDA" #x100D)
|
||||
("MYANMAR LETTER DDHA" #x100E)
|
||||
("MYANMAR LETTER NNA" #x100F)
|
||||
("MYANMAR LETTER TA" #x1010)
|
||||
("MYANMAR LETTER THA" #x1011)
|
||||
("MYANMAR LETTER DA" #x1012)
|
||||
("MYANMAR LETTER DHA" #x1013)
|
||||
("MYANMAR LETTER NA" #x1014)
|
||||
("MYANMAR LETTER PA" #x1015)
|
||||
("MYANMAR LETTER PHA" #x1016)
|
||||
("MYANMAR LETTER BA" #x1017)
|
||||
("MYANMAR LETTER BHA" #x1018)
|
||||
("MYANMAR LETTER MA" #x1019)
|
||||
("MYANMAR LETTER YA" #x101A)
|
||||
("MYANMAR LETTER RA" #x101B)
|
||||
("MYANMAR LETTER LA" #x101C)
|
||||
("MYANMAR LETTER WA" #x101D)
|
||||
("MYANMAR LETTER SA" #x101E)
|
||||
("MYANMAR LETTER HA" #x101F)
|
||||
("MYANMAR LETTER LLA" #x1020)
|
||||
("MYANMAR LETTER A" #x1021)
|
||||
("MYANMAR LETTER I" #x1023)
|
||||
("MYANMAR LETTER II" #x1024)
|
||||
("MYANMAR LETTER U" #x1025)
|
||||
("MYANMAR LETTER UU" #x1026)
|
||||
("MYANMAR LETTER E" #x1027)
|
||||
("MYANMAR LETTER O" #x1029)
|
||||
("MYANMAR LETTER AU" #x102A)
|
||||
("MYANMAR VOWEL SIGN AA" #x102C)
|
||||
("MYANMAR VOWEL SIGN I" #x102D)
|
||||
("MYANMAR VOWEL SIGN II" #x102E)
|
||||
("MYANMAR VOWEL SIGN U" #x102F)
|
||||
("MYANMAR VOWEL SIGN UU" #x1030)
|
||||
("MYANMAR VOWEL SIGN E" #x1031)
|
||||
("MYANMAR VOWEL SIGN AI" #x1032)
|
||||
("MYANMAR SIGN ANUSVARA" #x1036)
|
||||
("MYANMAR SIGN DOT BELOW" #x1037)
|
||||
("MYANMAR SIGN VISARGA" #x1038)
|
||||
("MYANMAR SIGN VIRAMA" #x1039)
|
||||
("MYANMAR DIGIT ZERO" #x1040)
|
||||
("MYANMAR DIGIT ONE" #x1041)
|
||||
("MYANMAR DIGIT TWO" #x1042)
|
||||
("MYANMAR DIGIT THREE" #x1043)
|
||||
("MYANMAR DIGIT FOUR" #x1044)
|
||||
("MYANMAR DIGIT FIVE" #x1045)
|
||||
("MYANMAR DIGIT SIX" #x1046)
|
||||
("MYANMAR DIGIT SEVEN" #x1047)
|
||||
("MYANMAR DIGIT EIGHT" #x1048)
|
||||
("MYANMAR DIGIT NINE" #x1049)
|
||||
("MYANMAR SIGN LITTLE SECTION" #x104A)
|
||||
("MYANMAR SIGN SECTION" #x104B)
|
||||
("MYANMAR SYMBOL LOCATIVE" #x104C)
|
||||
("MYANMAR SYMBOL COMPLETED" #x104D)
|
||||
("MYANMAR SYMBOL AFOREMENTIONED" #x104E)
|
||||
("MYANMAR SYMBOL GENITIVE" #x104F)
|
||||
("MYANMAR LETTER SHA" #x1050)
|
||||
("MYANMAR LETTER SSA" #x1051)
|
||||
("MYANMAR LETTER VOCALIC R" #x1052)
|
||||
("MYANMAR LETTER VOCALIC RR" #x1053)
|
||||
("MYANMAR LETTER VOCALIC L" #x1054)
|
||||
("MYANMAR LETTER VOCALIC LL" #x1055)
|
||||
("MYANMAR VOWEL SIGN VOCALIC R" #x1056)
|
||||
("MYANMAR VOWEL SIGN VOCALIC RR" #x1057)
|
||||
("MYANMAR VOWEL SIGN VOCALIC L" #x1058)
|
||||
("MYANMAR VOWEL SIGN VOCALIC LL" #x1059)
|
||||
))
|
||||
|
||||
;; arch-tag: 030cc7f0-2667-4504-ae9c-39c00fe146ff
|
84
etc/nxml/010A0-010FF.el
Normal file
84
etc/nxml/010A0-010FF.el
Normal file
|
@ -0,0 +1,84 @@
|
|||
(nxml-define-char-name-set 'georgian
|
||||
'(("GEORGIAN CAPITAL LETTER AN" #x10A0)
|
||||
("GEORGIAN CAPITAL LETTER BAN" #x10A1)
|
||||
("GEORGIAN CAPITAL LETTER GAN" #x10A2)
|
||||
("GEORGIAN CAPITAL LETTER DON" #x10A3)
|
||||
("GEORGIAN CAPITAL LETTER EN" #x10A4)
|
||||
("GEORGIAN CAPITAL LETTER VIN" #x10A5)
|
||||
("GEORGIAN CAPITAL LETTER ZEN" #x10A6)
|
||||
("GEORGIAN CAPITAL LETTER TAN" #x10A7)
|
||||
("GEORGIAN CAPITAL LETTER IN" #x10A8)
|
||||
("GEORGIAN CAPITAL LETTER KAN" #x10A9)
|
||||
("GEORGIAN CAPITAL LETTER LAS" #x10AA)
|
||||
("GEORGIAN CAPITAL LETTER MAN" #x10AB)
|
||||
("GEORGIAN CAPITAL LETTER NAR" #x10AC)
|
||||
("GEORGIAN CAPITAL LETTER ON" #x10AD)
|
||||
("GEORGIAN CAPITAL LETTER PAR" #x10AE)
|
||||
("GEORGIAN CAPITAL LETTER ZHAR" #x10AF)
|
||||
("GEORGIAN CAPITAL LETTER RAE" #x10B0)
|
||||
("GEORGIAN CAPITAL LETTER SAN" #x10B1)
|
||||
("GEORGIAN CAPITAL LETTER TAR" #x10B2)
|
||||
("GEORGIAN CAPITAL LETTER UN" #x10B3)
|
||||
("GEORGIAN CAPITAL LETTER PHAR" #x10B4)
|
||||
("GEORGIAN CAPITAL LETTER KHAR" #x10B5)
|
||||
("GEORGIAN CAPITAL LETTER GHAN" #x10B6)
|
||||
("GEORGIAN CAPITAL LETTER QAR" #x10B7)
|
||||
("GEORGIAN CAPITAL LETTER SHIN" #x10B8)
|
||||
("GEORGIAN CAPITAL LETTER CHIN" #x10B9)
|
||||
("GEORGIAN CAPITAL LETTER CAN" #x10BA)
|
||||
("GEORGIAN CAPITAL LETTER JIL" #x10BB)
|
||||
("GEORGIAN CAPITAL LETTER CIL" #x10BC)
|
||||
("GEORGIAN CAPITAL LETTER CHAR" #x10BD)
|
||||
("GEORGIAN CAPITAL LETTER XAN" #x10BE)
|
||||
("GEORGIAN CAPITAL LETTER JHAN" #x10BF)
|
||||
("GEORGIAN CAPITAL LETTER HAE" #x10C0)
|
||||
("GEORGIAN CAPITAL LETTER HE" #x10C1)
|
||||
("GEORGIAN CAPITAL LETTER HIE" #x10C2)
|
||||
("GEORGIAN CAPITAL LETTER WE" #x10C3)
|
||||
("GEORGIAN CAPITAL LETTER HAR" #x10C4)
|
||||
("GEORGIAN CAPITAL LETTER HOE" #x10C5)
|
||||
("GEORGIAN LETTER AN" #x10D0)
|
||||
("GEORGIAN LETTER BAN" #x10D1)
|
||||
("GEORGIAN LETTER GAN" #x10D2)
|
||||
("GEORGIAN LETTER DON" #x10D3)
|
||||
("GEORGIAN LETTER EN" #x10D4)
|
||||
("GEORGIAN LETTER VIN" #x10D5)
|
||||
("GEORGIAN LETTER ZEN" #x10D6)
|
||||
("GEORGIAN LETTER TAN" #x10D7)
|
||||
("GEORGIAN LETTER IN" #x10D8)
|
||||
("GEORGIAN LETTER KAN" #x10D9)
|
||||
("GEORGIAN LETTER LAS" #x10DA)
|
||||
("GEORGIAN LETTER MAN" #x10DB)
|
||||
("GEORGIAN LETTER NAR" #x10DC)
|
||||
("GEORGIAN LETTER ON" #x10DD)
|
||||
("GEORGIAN LETTER PAR" #x10DE)
|
||||
("GEORGIAN LETTER ZHAR" #x10DF)
|
||||
("GEORGIAN LETTER RAE" #x10E0)
|
||||
("GEORGIAN LETTER SAN" #x10E1)
|
||||
("GEORGIAN LETTER TAR" #x10E2)
|
||||
("GEORGIAN LETTER UN" #x10E3)
|
||||
("GEORGIAN LETTER PHAR" #x10E4)
|
||||
("GEORGIAN LETTER KHAR" #x10E5)
|
||||
("GEORGIAN LETTER GHAN" #x10E6)
|
||||
("GEORGIAN LETTER QAR" #x10E7)
|
||||
("GEORGIAN LETTER SHIN" #x10E8)
|
||||
("GEORGIAN LETTER CHIN" #x10E9)
|
||||
("GEORGIAN LETTER CAN" #x10EA)
|
||||
("GEORGIAN LETTER JIL" #x10EB)
|
||||
("GEORGIAN LETTER CIL" #x10EC)
|
||||
("GEORGIAN LETTER CHAR" #x10ED)
|
||||
("GEORGIAN LETTER XAN" #x10EE)
|
||||
("GEORGIAN LETTER JHAN" #x10EF)
|
||||
("GEORGIAN LETTER HAE" #x10F0)
|
||||
("GEORGIAN LETTER HE" #x10F1)
|
||||
("GEORGIAN LETTER HIE" #x10F2)
|
||||
("GEORGIAN LETTER WE" #x10F3)
|
||||
("GEORGIAN LETTER HAR" #x10F4)
|
||||
("GEORGIAN LETTER HOE" #x10F5)
|
||||
("GEORGIAN LETTER FI" #x10F6)
|
||||
("GEORGIAN LETTER YN" #x10F7)
|
||||
("GEORGIAN LETTER ELIFI" #x10F8)
|
||||
("GEORGIAN PARAGRAPH SEPARATOR" #x10FB)
|
||||
))
|
||||
|
||||
;; arch-tag: 8f5a9cec-8b71-48c9-af68-c8c51112e5b2
|
244
etc/nxml/01100-011FF.el
Normal file
244
etc/nxml/01100-011FF.el
Normal file
|
@ -0,0 +1,244 @@
|
|||
(nxml-define-char-name-set 'hangul-jamo
|
||||
'(("HANGUL CHOSEONG KIYEOK" #x1100)
|
||||
("HANGUL CHOSEONG SSANGKIYEOK" #x1101)
|
||||
("HANGUL CHOSEONG NIEUN" #x1102)
|
||||
("HANGUL CHOSEONG TIKEUT" #x1103)
|
||||
("HANGUL CHOSEONG SSANGTIKEUT" #x1104)
|
||||
("HANGUL CHOSEONG RIEUL" #x1105)
|
||||
("HANGUL CHOSEONG MIEUM" #x1106)
|
||||
("HANGUL CHOSEONG PIEUP" #x1107)
|
||||
("HANGUL CHOSEONG SSANGPIEUP" #x1108)
|
||||
("HANGUL CHOSEONG SIOS" #x1109)
|
||||
("HANGUL CHOSEONG SSANGSIOS" #x110A)
|
||||
("HANGUL CHOSEONG IEUNG" #x110B)
|
||||
("HANGUL CHOSEONG CIEUC" #x110C)
|
||||
("HANGUL CHOSEONG SSANGCIEUC" #x110D)
|
||||
("HANGUL CHOSEONG CHIEUCH" #x110E)
|
||||
("HANGUL CHOSEONG KHIEUKH" #x110F)
|
||||
("HANGUL CHOSEONG THIEUTH" #x1110)
|
||||
("HANGUL CHOSEONG PHIEUPH" #x1111)
|
||||
("HANGUL CHOSEONG HIEUH" #x1112)
|
||||
("HANGUL CHOSEONG NIEUN-KIYEOK" #x1113)
|
||||
("HANGUL CHOSEONG SSANGNIEUN" #x1114)
|
||||
("HANGUL CHOSEONG NIEUN-TIKEUT" #x1115)
|
||||
("HANGUL CHOSEONG NIEUN-PIEUP" #x1116)
|
||||
("HANGUL CHOSEONG TIKEUT-KIYEOK" #x1117)
|
||||
("HANGUL CHOSEONG RIEUL-NIEUN" #x1118)
|
||||
("HANGUL CHOSEONG SSANGRIEUL" #x1119)
|
||||
("HANGUL CHOSEONG RIEUL-HIEUH" #x111A)
|
||||
("HANGUL CHOSEONG KAPYEOUNRIEUL" #x111B)
|
||||
("HANGUL CHOSEONG MIEUM-PIEUP" #x111C)
|
||||
("HANGUL CHOSEONG KAPYEOUNMIEUM" #x111D)
|
||||
("HANGUL CHOSEONG PIEUP-KIYEOK" #x111E)
|
||||
("HANGUL CHOSEONG PIEUP-NIEUN" #x111F)
|
||||
("HANGUL CHOSEONG PIEUP-TIKEUT" #x1120)
|
||||
("HANGUL CHOSEONG PIEUP-SIOS" #x1121)
|
||||
("HANGUL CHOSEONG PIEUP-SIOS-KIYEOK" #x1122)
|
||||
("HANGUL CHOSEONG PIEUP-SIOS-TIKEUT" #x1123)
|
||||
("HANGUL CHOSEONG PIEUP-SIOS-PIEUP" #x1124)
|
||||
("HANGUL CHOSEONG PIEUP-SSANGSIOS" #x1125)
|
||||
("HANGUL CHOSEONG PIEUP-SIOS-CIEUC" #x1126)
|
||||
("HANGUL CHOSEONG PIEUP-CIEUC" #x1127)
|
||||
("HANGUL CHOSEONG PIEUP-CHIEUCH" #x1128)
|
||||
("HANGUL CHOSEONG PIEUP-THIEUTH" #x1129)
|
||||
("HANGUL CHOSEONG PIEUP-PHIEUPH" #x112A)
|
||||
("HANGUL CHOSEONG KAPYEOUNPIEUP" #x112B)
|
||||
("HANGUL CHOSEONG KAPYEOUNSSANGPIEUP" #x112C)
|
||||
("HANGUL CHOSEONG SIOS-KIYEOK" #x112D)
|
||||
("HANGUL CHOSEONG SIOS-NIEUN" #x112E)
|
||||
("HANGUL CHOSEONG SIOS-TIKEUT" #x112F)
|
||||
("HANGUL CHOSEONG SIOS-RIEUL" #x1130)
|
||||
("HANGUL CHOSEONG SIOS-MIEUM" #x1131)
|
||||
("HANGUL CHOSEONG SIOS-PIEUP" #x1132)
|
||||
("HANGUL CHOSEONG SIOS-PIEUP-KIYEOK" #x1133)
|
||||
("HANGUL CHOSEONG SIOS-SSANGSIOS" #x1134)
|
||||
("HANGUL CHOSEONG SIOS-IEUNG" #x1135)
|
||||
("HANGUL CHOSEONG SIOS-CIEUC" #x1136)
|
||||
("HANGUL CHOSEONG SIOS-CHIEUCH" #x1137)
|
||||
("HANGUL CHOSEONG SIOS-KHIEUKH" #x1138)
|
||||
("HANGUL CHOSEONG SIOS-THIEUTH" #x1139)
|
||||
("HANGUL CHOSEONG SIOS-PHIEUPH" #x113A)
|
||||
("HANGUL CHOSEONG SIOS-HIEUH" #x113B)
|
||||
("HANGUL CHOSEONG CHITUEUMSIOS" #x113C)
|
||||
("HANGUL CHOSEONG CHITUEUMSSANGSIOS" #x113D)
|
||||
("HANGUL CHOSEONG CEONGCHIEUMSIOS" #x113E)
|
||||
("HANGUL CHOSEONG CEONGCHIEUMSSANGSIOS" #x113F)
|
||||
("HANGUL CHOSEONG PANSIOS" #x1140)
|
||||
("HANGUL CHOSEONG IEUNG-KIYEOK" #x1141)
|
||||
("HANGUL CHOSEONG IEUNG-TIKEUT" #x1142)
|
||||
("HANGUL CHOSEONG IEUNG-MIEUM" #x1143)
|
||||
("HANGUL CHOSEONG IEUNG-PIEUP" #x1144)
|
||||
("HANGUL CHOSEONG IEUNG-SIOS" #x1145)
|
||||
("HANGUL CHOSEONG IEUNG-PANSIOS" #x1146)
|
||||
("HANGUL CHOSEONG SSANGIEUNG" #x1147)
|
||||
("HANGUL CHOSEONG IEUNG-CIEUC" #x1148)
|
||||
("HANGUL CHOSEONG IEUNG-CHIEUCH" #x1149)
|
||||
("HANGUL CHOSEONG IEUNG-THIEUTH" #x114A)
|
||||
("HANGUL CHOSEONG IEUNG-PHIEUPH" #x114B)
|
||||
("HANGUL CHOSEONG YESIEUNG" #x114C)
|
||||
("HANGUL CHOSEONG CIEUC-IEUNG" #x114D)
|
||||
("HANGUL CHOSEONG CHITUEUMCIEUC" #x114E)
|
||||
("HANGUL CHOSEONG CHITUEUMSSANGCIEUC" #x114F)
|
||||
("HANGUL CHOSEONG CEONGCHIEUMCIEUC" #x1150)
|
||||
("HANGUL CHOSEONG CEONGCHIEUMSSANGCIEUC" #x1151)
|
||||
("HANGUL CHOSEONG CHIEUCH-KHIEUKH" #x1152)
|
||||
("HANGUL CHOSEONG CHIEUCH-HIEUH" #x1153)
|
||||
("HANGUL CHOSEONG CHITUEUMCHIEUCH" #x1154)
|
||||
("HANGUL CHOSEONG CEONGCHIEUMCHIEUCH" #x1155)
|
||||
("HANGUL CHOSEONG PHIEUPH-PIEUP" #x1156)
|
||||
("HANGUL CHOSEONG KAPYEOUNPHIEUPH" #x1157)
|
||||
("HANGUL CHOSEONG SSANGHIEUH" #x1158)
|
||||
("HANGUL CHOSEONG YEORINHIEUH" #x1159)
|
||||
("HANGUL CHOSEONG FILLER" #x115F)
|
||||
("HANGUL JUNGSEONG FILLER" #x1160)
|
||||
("HANGUL JUNGSEONG A" #x1161)
|
||||
("HANGUL JUNGSEONG AE" #x1162)
|
||||
("HANGUL JUNGSEONG YA" #x1163)
|
||||
("HANGUL JUNGSEONG YAE" #x1164)
|
||||
("HANGUL JUNGSEONG EO" #x1165)
|
||||
("HANGUL JUNGSEONG E" #x1166)
|
||||
("HANGUL JUNGSEONG YEO" #x1167)
|
||||
("HANGUL JUNGSEONG YE" #x1168)
|
||||
("HANGUL JUNGSEONG O" #x1169)
|
||||
("HANGUL JUNGSEONG WA" #x116A)
|
||||
("HANGUL JUNGSEONG WAE" #x116B)
|
||||
("HANGUL JUNGSEONG OE" #x116C)
|
||||
("HANGUL JUNGSEONG YO" #x116D)
|
||||
("HANGUL JUNGSEONG U" #x116E)
|
||||
("HANGUL JUNGSEONG WEO" #x116F)
|
||||
("HANGUL JUNGSEONG WE" #x1170)
|
||||
("HANGUL JUNGSEONG WI" #x1171)
|
||||
("HANGUL JUNGSEONG YU" #x1172)
|
||||
("HANGUL JUNGSEONG EU" #x1173)
|
||||
("HANGUL JUNGSEONG YI" #x1174)
|
||||
("HANGUL JUNGSEONG I" #x1175)
|
||||
("HANGUL JUNGSEONG A-O" #x1176)
|
||||
("HANGUL JUNGSEONG A-U" #x1177)
|
||||
("HANGUL JUNGSEONG YA-O" #x1178)
|
||||
("HANGUL JUNGSEONG YA-YO" #x1179)
|
||||
("HANGUL JUNGSEONG EO-O" #x117A)
|
||||
("HANGUL JUNGSEONG EO-U" #x117B)
|
||||
("HANGUL JUNGSEONG EO-EU" #x117C)
|
||||
("HANGUL JUNGSEONG YEO-O" #x117D)
|
||||
("HANGUL JUNGSEONG YEO-U" #x117E)
|
||||
("HANGUL JUNGSEONG O-EO" #x117F)
|
||||
("HANGUL JUNGSEONG O-E" #x1180)
|
||||
("HANGUL JUNGSEONG O-YE" #x1181)
|
||||
("HANGUL JUNGSEONG O-O" #x1182)
|
||||
("HANGUL JUNGSEONG O-U" #x1183)
|
||||
("HANGUL JUNGSEONG YO-YA" #x1184)
|
||||
("HANGUL JUNGSEONG YO-YAE" #x1185)
|
||||
("HANGUL JUNGSEONG YO-YEO" #x1186)
|
||||
("HANGUL JUNGSEONG YO-O" #x1187)
|
||||
("HANGUL JUNGSEONG YO-I" #x1188)
|
||||
("HANGUL JUNGSEONG U-A" #x1189)
|
||||
("HANGUL JUNGSEONG U-AE" #x118A)
|
||||
("HANGUL JUNGSEONG U-EO-EU" #x118B)
|
||||
("HANGUL JUNGSEONG U-YE" #x118C)
|
||||
("HANGUL JUNGSEONG U-U" #x118D)
|
||||
("HANGUL JUNGSEONG YU-A" #x118E)
|
||||
("HANGUL JUNGSEONG YU-EO" #x118F)
|
||||
("HANGUL JUNGSEONG YU-E" #x1190)
|
||||
("HANGUL JUNGSEONG YU-YEO" #x1191)
|
||||
("HANGUL JUNGSEONG YU-YE" #x1192)
|
||||
("HANGUL JUNGSEONG YU-U" #x1193)
|
||||
("HANGUL JUNGSEONG YU-I" #x1194)
|
||||
("HANGUL JUNGSEONG EU-U" #x1195)
|
||||
("HANGUL JUNGSEONG EU-EU" #x1196)
|
||||
("HANGUL JUNGSEONG YI-U" #x1197)
|
||||
("HANGUL JUNGSEONG I-A" #x1198)
|
||||
("HANGUL JUNGSEONG I-YA" #x1199)
|
||||
("HANGUL JUNGSEONG I-O" #x119A)
|
||||
("HANGUL JUNGSEONG I-U" #x119B)
|
||||
("HANGUL JUNGSEONG I-EU" #x119C)
|
||||
("HANGUL JUNGSEONG I-ARAEA" #x119D)
|
||||
("HANGUL JUNGSEONG ARAEA" #x119E)
|
||||
("HANGUL JUNGSEONG ARAEA-EO" #x119F)
|
||||
("HANGUL JUNGSEONG ARAEA-U" #x11A0)
|
||||
("HANGUL JUNGSEONG ARAEA-I" #x11A1)
|
||||
("HANGUL JUNGSEONG SSANGARAEA" #x11A2)
|
||||
("HANGUL JONGSEONG KIYEOK" #x11A8)
|
||||
("HANGUL JONGSEONG SSANGKIYEOK" #x11A9)
|
||||
("HANGUL JONGSEONG KIYEOK-SIOS" #x11AA)
|
||||
("HANGUL JONGSEONG NIEUN" #x11AB)
|
||||
("HANGUL JONGSEONG NIEUN-CIEUC" #x11AC)
|
||||
("HANGUL JONGSEONG NIEUN-HIEUH" #x11AD)
|
||||
("HANGUL JONGSEONG TIKEUT" #x11AE)
|
||||
("HANGUL JONGSEONG RIEUL" #x11AF)
|
||||
("HANGUL JONGSEONG RIEUL-KIYEOK" #x11B0)
|
||||
("HANGUL JONGSEONG RIEUL-MIEUM" #x11B1)
|
||||
("HANGUL JONGSEONG RIEUL-PIEUP" #x11B2)
|
||||
("HANGUL JONGSEONG RIEUL-SIOS" #x11B3)
|
||||
("HANGUL JONGSEONG RIEUL-THIEUTH" #x11B4)
|
||||
("HANGUL JONGSEONG RIEUL-PHIEUPH" #x11B5)
|
||||
("HANGUL JONGSEONG RIEUL-HIEUH" #x11B6)
|
||||
("HANGUL JONGSEONG MIEUM" #x11B7)
|
||||
("HANGUL JONGSEONG PIEUP" #x11B8)
|
||||
("HANGUL JONGSEONG PIEUP-SIOS" #x11B9)
|
||||
("HANGUL JONGSEONG SIOS" #x11BA)
|
||||
("HANGUL JONGSEONG SSANGSIOS" #x11BB)
|
||||
("HANGUL JONGSEONG IEUNG" #x11BC)
|
||||
("HANGUL JONGSEONG CIEUC" #x11BD)
|
||||
("HANGUL JONGSEONG CHIEUCH" #x11BE)
|
||||
("HANGUL JONGSEONG KHIEUKH" #x11BF)
|
||||
("HANGUL JONGSEONG THIEUTH" #x11C0)
|
||||
("HANGUL JONGSEONG PHIEUPH" #x11C1)
|
||||
("HANGUL JONGSEONG HIEUH" #x11C2)
|
||||
("HANGUL JONGSEONG KIYEOK-RIEUL" #x11C3)
|
||||
("HANGUL JONGSEONG KIYEOK-SIOS-KIYEOK" #x11C4)
|
||||
("HANGUL JONGSEONG NIEUN-KIYEOK" #x11C5)
|
||||
("HANGUL JONGSEONG NIEUN-TIKEUT" #x11C6)
|
||||
("HANGUL JONGSEONG NIEUN-SIOS" #x11C7)
|
||||
("HANGUL JONGSEONG NIEUN-PANSIOS" #x11C8)
|
||||
("HANGUL JONGSEONG NIEUN-THIEUTH" #x11C9)
|
||||
("HANGUL JONGSEONG TIKEUT-KIYEOK" #x11CA)
|
||||
("HANGUL JONGSEONG TIKEUT-RIEUL" #x11CB)
|
||||
("HANGUL JONGSEONG RIEUL-KIYEOK-SIOS" #x11CC)
|
||||
("HANGUL JONGSEONG RIEUL-NIEUN" #x11CD)
|
||||
("HANGUL JONGSEONG RIEUL-TIKEUT" #x11CE)
|
||||
("HANGUL JONGSEONG RIEUL-TIKEUT-HIEUH" #x11CF)
|
||||
("HANGUL JONGSEONG SSANGRIEUL" #x11D0)
|
||||
("HANGUL JONGSEONG RIEUL-MIEUM-KIYEOK" #x11D1)
|
||||
("HANGUL JONGSEONG RIEUL-MIEUM-SIOS" #x11D2)
|
||||
("HANGUL JONGSEONG RIEUL-PIEUP-SIOS" #x11D3)
|
||||
("HANGUL JONGSEONG RIEUL-PIEUP-HIEUH" #x11D4)
|
||||
("HANGUL JONGSEONG RIEUL-KAPYEOUNPIEUP" #x11D5)
|
||||
("HANGUL JONGSEONG RIEUL-SSANGSIOS" #x11D6)
|
||||
("HANGUL JONGSEONG RIEUL-PANSIOS" #x11D7)
|
||||
("HANGUL JONGSEONG RIEUL-KHIEUKH" #x11D8)
|
||||
("HANGUL JONGSEONG RIEUL-YEORINHIEUH" #x11D9)
|
||||
("HANGUL JONGSEONG MIEUM-KIYEOK" #x11DA)
|
||||
("HANGUL JONGSEONG MIEUM-RIEUL" #x11DB)
|
||||
("HANGUL JONGSEONG MIEUM-PIEUP" #x11DC)
|
||||
("HANGUL JONGSEONG MIEUM-SIOS" #x11DD)
|
||||
("HANGUL JONGSEONG MIEUM-SSANGSIOS" #x11DE)
|
||||
("HANGUL JONGSEONG MIEUM-PANSIOS" #x11DF)
|
||||
("HANGUL JONGSEONG MIEUM-CHIEUCH" #x11E0)
|
||||
("HANGUL JONGSEONG MIEUM-HIEUH" #x11E1)
|
||||
("HANGUL JONGSEONG KAPYEOUNMIEUM" #x11E2)
|
||||
("HANGUL JONGSEONG PIEUP-RIEUL" #x11E3)
|
||||
("HANGUL JONGSEONG PIEUP-PHIEUPH" #x11E4)
|
||||
("HANGUL JONGSEONG PIEUP-HIEUH" #x11E5)
|
||||
("HANGUL JONGSEONG KAPYEOUNPIEUP" #x11E6)
|
||||
("HANGUL JONGSEONG SIOS-KIYEOK" #x11E7)
|
||||
("HANGUL JONGSEONG SIOS-TIKEUT" #x11E8)
|
||||
("HANGUL JONGSEONG SIOS-RIEUL" #x11E9)
|
||||
("HANGUL JONGSEONG SIOS-PIEUP" #x11EA)
|
||||
("HANGUL JONGSEONG PANSIOS" #x11EB)
|
||||
("HANGUL JONGSEONG IEUNG-KIYEOK" #x11EC)
|
||||
("HANGUL JONGSEONG IEUNG-SSANGKIYEOK" #x11ED)
|
||||
("HANGUL JONGSEONG SSANGIEUNG" #x11EE)
|
||||
("HANGUL JONGSEONG IEUNG-KHIEUKH" #x11EF)
|
||||
("HANGUL JONGSEONG YESIEUNG" #x11F0)
|
||||
("HANGUL JONGSEONG YESIEUNG-SIOS" #x11F1)
|
||||
("HANGUL JONGSEONG YESIEUNG-PANSIOS" #x11F2)
|
||||
("HANGUL JONGSEONG PHIEUPH-PIEUP" #x11F3)
|
||||
("HANGUL JONGSEONG KAPYEOUNPHIEUPH" #x11F4)
|
||||
("HANGUL JONGSEONG HIEUH-NIEUN" #x11F5)
|
||||
("HANGUL JONGSEONG HIEUH-RIEUL" #x11F6)
|
||||
("HANGUL JONGSEONG HIEUH-MIEUM" #x11F7)
|
||||
("HANGUL JONGSEONG HIEUH-PIEUP" #x11F8)
|
||||
("HANGUL JONGSEONG YEORINHIEUH" #x11F9)
|
||||
))
|
||||
|
||||
;; arch-tag: e631a2ad-7d7e-4a86-89f0-e6e4f7db5f39
|
349
etc/nxml/01200-0137F.el
Normal file
349
etc/nxml/01200-0137F.el
Normal file
|
@ -0,0 +1,349 @@
|
|||
(nxml-define-char-name-set 'ethiopic
|
||||
'(("ETHIOPIC SYLLABLE HA" #x1200)
|
||||
("ETHIOPIC SYLLABLE HU" #x1201)
|
||||
("ETHIOPIC SYLLABLE HI" #x1202)
|
||||
("ETHIOPIC SYLLABLE HAA" #x1203)
|
||||
("ETHIOPIC SYLLABLE HEE" #x1204)
|
||||
("ETHIOPIC SYLLABLE HE" #x1205)
|
||||
("ETHIOPIC SYLLABLE HO" #x1206)
|
||||
("ETHIOPIC SYLLABLE LA" #x1208)
|
||||
("ETHIOPIC SYLLABLE LU" #x1209)
|
||||
("ETHIOPIC SYLLABLE LI" #x120A)
|
||||
("ETHIOPIC SYLLABLE LAA" #x120B)
|
||||
("ETHIOPIC SYLLABLE LEE" #x120C)
|
||||
("ETHIOPIC SYLLABLE LE" #x120D)
|
||||
("ETHIOPIC SYLLABLE LO" #x120E)
|
||||
("ETHIOPIC SYLLABLE LWA" #x120F)
|
||||
("ETHIOPIC SYLLABLE HHA" #x1210)
|
||||
("ETHIOPIC SYLLABLE HHU" #x1211)
|
||||
("ETHIOPIC SYLLABLE HHI" #x1212)
|
||||
("ETHIOPIC SYLLABLE HHAA" #x1213)
|
||||
("ETHIOPIC SYLLABLE HHEE" #x1214)
|
||||
("ETHIOPIC SYLLABLE HHE" #x1215)
|
||||
("ETHIOPIC SYLLABLE HHO" #x1216)
|
||||
("ETHIOPIC SYLLABLE HHWA" #x1217)
|
||||
("ETHIOPIC SYLLABLE MA" #x1218)
|
||||
("ETHIOPIC SYLLABLE MU" #x1219)
|
||||
("ETHIOPIC SYLLABLE MI" #x121A)
|
||||
("ETHIOPIC SYLLABLE MAA" #x121B)
|
||||
("ETHIOPIC SYLLABLE MEE" #x121C)
|
||||
("ETHIOPIC SYLLABLE ME" #x121D)
|
||||
("ETHIOPIC SYLLABLE MO" #x121E)
|
||||
("ETHIOPIC SYLLABLE MWA" #x121F)
|
||||
("ETHIOPIC SYLLABLE SZA" #x1220)
|
||||
("ETHIOPIC SYLLABLE SZU" #x1221)
|
||||
("ETHIOPIC SYLLABLE SZI" #x1222)
|
||||
("ETHIOPIC SYLLABLE SZAA" #x1223)
|
||||
("ETHIOPIC SYLLABLE SZEE" #x1224)
|
||||
("ETHIOPIC SYLLABLE SZE" #x1225)
|
||||
("ETHIOPIC SYLLABLE SZO" #x1226)
|
||||
("ETHIOPIC SYLLABLE SZWA" #x1227)
|
||||
("ETHIOPIC SYLLABLE RA" #x1228)
|
||||
("ETHIOPIC SYLLABLE RU" #x1229)
|
||||
("ETHIOPIC SYLLABLE RI" #x122A)
|
||||
("ETHIOPIC SYLLABLE RAA" #x122B)
|
||||
("ETHIOPIC SYLLABLE REE" #x122C)
|
||||
("ETHIOPIC SYLLABLE RE" #x122D)
|
||||
("ETHIOPIC SYLLABLE RO" #x122E)
|
||||
("ETHIOPIC SYLLABLE RWA" #x122F)
|
||||
("ETHIOPIC SYLLABLE SA" #x1230)
|
||||
("ETHIOPIC SYLLABLE SU" #x1231)
|
||||
("ETHIOPIC SYLLABLE SI" #x1232)
|
||||
("ETHIOPIC SYLLABLE SAA" #x1233)
|
||||
("ETHIOPIC SYLLABLE SEE" #x1234)
|
||||
("ETHIOPIC SYLLABLE SE" #x1235)
|
||||
("ETHIOPIC SYLLABLE SO" #x1236)
|
||||
("ETHIOPIC SYLLABLE SWA" #x1237)
|
||||
("ETHIOPIC SYLLABLE SHA" #x1238)
|
||||
("ETHIOPIC SYLLABLE SHU" #x1239)
|
||||
("ETHIOPIC SYLLABLE SHI" #x123A)
|
||||
("ETHIOPIC SYLLABLE SHAA" #x123B)
|
||||
("ETHIOPIC SYLLABLE SHEE" #x123C)
|
||||
("ETHIOPIC SYLLABLE SHE" #x123D)
|
||||
("ETHIOPIC SYLLABLE SHO" #x123E)
|
||||
("ETHIOPIC SYLLABLE SHWA" #x123F)
|
||||
("ETHIOPIC SYLLABLE QA" #x1240)
|
||||
("ETHIOPIC SYLLABLE QU" #x1241)
|
||||
("ETHIOPIC SYLLABLE QI" #x1242)
|
||||
("ETHIOPIC SYLLABLE QAA" #x1243)
|
||||
("ETHIOPIC SYLLABLE QEE" #x1244)
|
||||
("ETHIOPIC SYLLABLE QE" #x1245)
|
||||
("ETHIOPIC SYLLABLE QO" #x1246)
|
||||
("ETHIOPIC SYLLABLE QWA" #x1248)
|
||||
("ETHIOPIC SYLLABLE QWI" #x124A)
|
||||
("ETHIOPIC SYLLABLE QWAA" #x124B)
|
||||
("ETHIOPIC SYLLABLE QWEE" #x124C)
|
||||
("ETHIOPIC SYLLABLE QWE" #x124D)
|
||||
("ETHIOPIC SYLLABLE QHA" #x1250)
|
||||
("ETHIOPIC SYLLABLE QHU" #x1251)
|
||||
("ETHIOPIC SYLLABLE QHI" #x1252)
|
||||
("ETHIOPIC SYLLABLE QHAA" #x1253)
|
||||
("ETHIOPIC SYLLABLE QHEE" #x1254)
|
||||
("ETHIOPIC SYLLABLE QHE" #x1255)
|
||||
("ETHIOPIC SYLLABLE QHO" #x1256)
|
||||
("ETHIOPIC SYLLABLE QHWA" #x1258)
|
||||
("ETHIOPIC SYLLABLE QHWI" #x125A)
|
||||
("ETHIOPIC SYLLABLE QHWAA" #x125B)
|
||||
("ETHIOPIC SYLLABLE QHWEE" #x125C)
|
||||
("ETHIOPIC SYLLABLE QHWE" #x125D)
|
||||
("ETHIOPIC SYLLABLE BA" #x1260)
|
||||
("ETHIOPIC SYLLABLE BU" #x1261)
|
||||
("ETHIOPIC SYLLABLE BI" #x1262)
|
||||
("ETHIOPIC SYLLABLE BAA" #x1263)
|
||||
("ETHIOPIC SYLLABLE BEE" #x1264)
|
||||
("ETHIOPIC SYLLABLE BE" #x1265)
|
||||
("ETHIOPIC SYLLABLE BO" #x1266)
|
||||
("ETHIOPIC SYLLABLE BWA" #x1267)
|
||||
("ETHIOPIC SYLLABLE VA" #x1268)
|
||||
("ETHIOPIC SYLLABLE VU" #x1269)
|
||||
("ETHIOPIC SYLLABLE VI" #x126A)
|
||||
("ETHIOPIC SYLLABLE VAA" #x126B)
|
||||
("ETHIOPIC SYLLABLE VEE" #x126C)
|
||||
("ETHIOPIC SYLLABLE VE" #x126D)
|
||||
("ETHIOPIC SYLLABLE VO" #x126E)
|
||||
("ETHIOPIC SYLLABLE VWA" #x126F)
|
||||
("ETHIOPIC SYLLABLE TA" #x1270)
|
||||
("ETHIOPIC SYLLABLE TU" #x1271)
|
||||
("ETHIOPIC SYLLABLE TI" #x1272)
|
||||
("ETHIOPIC SYLLABLE TAA" #x1273)
|
||||
("ETHIOPIC SYLLABLE TEE" #x1274)
|
||||
("ETHIOPIC SYLLABLE TE" #x1275)
|
||||
("ETHIOPIC SYLLABLE TO" #x1276)
|
||||
("ETHIOPIC SYLLABLE TWA" #x1277)
|
||||
("ETHIOPIC SYLLABLE CA" #x1278)
|
||||
("ETHIOPIC SYLLABLE CU" #x1279)
|
||||
("ETHIOPIC SYLLABLE CI" #x127A)
|
||||
("ETHIOPIC SYLLABLE CAA" #x127B)
|
||||
("ETHIOPIC SYLLABLE CEE" #x127C)
|
||||
("ETHIOPIC SYLLABLE CE" #x127D)
|
||||
("ETHIOPIC SYLLABLE CO" #x127E)
|
||||
("ETHIOPIC SYLLABLE CWA" #x127F)
|
||||
("ETHIOPIC SYLLABLE XA" #x1280)
|
||||
("ETHIOPIC SYLLABLE XU" #x1281)
|
||||
("ETHIOPIC SYLLABLE XI" #x1282)
|
||||
("ETHIOPIC SYLLABLE XAA" #x1283)
|
||||
("ETHIOPIC SYLLABLE XEE" #x1284)
|
||||
("ETHIOPIC SYLLABLE XE" #x1285)
|
||||
("ETHIOPIC SYLLABLE XO" #x1286)
|
||||
("ETHIOPIC SYLLABLE XWA" #x1288)
|
||||
("ETHIOPIC SYLLABLE XWI" #x128A)
|
||||
("ETHIOPIC SYLLABLE XWAA" #x128B)
|
||||
("ETHIOPIC SYLLABLE XWEE" #x128C)
|
||||
("ETHIOPIC SYLLABLE XWE" #x128D)
|
||||
("ETHIOPIC SYLLABLE NA" #x1290)
|
||||
("ETHIOPIC SYLLABLE NU" #x1291)
|
||||
("ETHIOPIC SYLLABLE NI" #x1292)
|
||||
("ETHIOPIC SYLLABLE NAA" #x1293)
|
||||
("ETHIOPIC SYLLABLE NEE" #x1294)
|
||||
("ETHIOPIC SYLLABLE NE" #x1295)
|
||||
("ETHIOPIC SYLLABLE NO" #x1296)
|
||||
("ETHIOPIC SYLLABLE NWA" #x1297)
|
||||
("ETHIOPIC SYLLABLE NYA" #x1298)
|
||||
("ETHIOPIC SYLLABLE NYU" #x1299)
|
||||
("ETHIOPIC SYLLABLE NYI" #x129A)
|
||||
("ETHIOPIC SYLLABLE NYAA" #x129B)
|
||||
("ETHIOPIC SYLLABLE NYEE" #x129C)
|
||||
("ETHIOPIC SYLLABLE NYE" #x129D)
|
||||
("ETHIOPIC SYLLABLE NYO" #x129E)
|
||||
("ETHIOPIC SYLLABLE NYWA" #x129F)
|
||||
("ETHIOPIC SYLLABLE GLOTTAL A" #x12A0)
|
||||
("ETHIOPIC SYLLABLE GLOTTAL U" #x12A1)
|
||||
("ETHIOPIC SYLLABLE GLOTTAL I" #x12A2)
|
||||
("ETHIOPIC SYLLABLE GLOTTAL AA" #x12A3)
|
||||
("ETHIOPIC SYLLABLE GLOTTAL EE" #x12A4)
|
||||
("ETHIOPIC SYLLABLE GLOTTAL E" #x12A5)
|
||||
("ETHIOPIC SYLLABLE GLOTTAL O" #x12A6)
|
||||
("ETHIOPIC SYLLABLE GLOTTAL WA" #x12A7)
|
||||
("ETHIOPIC SYLLABLE KA" #x12A8)
|
||||
("ETHIOPIC SYLLABLE KU" #x12A9)
|
||||
("ETHIOPIC SYLLABLE KI" #x12AA)
|
||||
("ETHIOPIC SYLLABLE KAA" #x12AB)
|
||||
("ETHIOPIC SYLLABLE KEE" #x12AC)
|
||||
("ETHIOPIC SYLLABLE KE" #x12AD)
|
||||
("ETHIOPIC SYLLABLE KO" #x12AE)
|
||||
("ETHIOPIC SYLLABLE KWA" #x12B0)
|
||||
("ETHIOPIC SYLLABLE KWI" #x12B2)
|
||||
("ETHIOPIC SYLLABLE KWAA" #x12B3)
|
||||
("ETHIOPIC SYLLABLE KWEE" #x12B4)
|
||||
("ETHIOPIC SYLLABLE KWE" #x12B5)
|
||||
("ETHIOPIC SYLLABLE KXA" #x12B8)
|
||||
("ETHIOPIC SYLLABLE KXU" #x12B9)
|
||||
("ETHIOPIC SYLLABLE KXI" #x12BA)
|
||||
("ETHIOPIC SYLLABLE KXAA" #x12BB)
|
||||
("ETHIOPIC SYLLABLE KXEE" #x12BC)
|
||||
("ETHIOPIC SYLLABLE KXE" #x12BD)
|
||||
("ETHIOPIC SYLLABLE KXO" #x12BE)
|
||||
("ETHIOPIC SYLLABLE KXWA" #x12C0)
|
||||
("ETHIOPIC SYLLABLE KXWI" #x12C2)
|
||||
("ETHIOPIC SYLLABLE KXWAA" #x12C3)
|
||||
("ETHIOPIC SYLLABLE KXWEE" #x12C4)
|
||||
("ETHIOPIC SYLLABLE KXWE" #x12C5)
|
||||
("ETHIOPIC SYLLABLE WA" #x12C8)
|
||||
("ETHIOPIC SYLLABLE WU" #x12C9)
|
||||
("ETHIOPIC SYLLABLE WI" #x12CA)
|
||||
("ETHIOPIC SYLLABLE WAA" #x12CB)
|
||||
("ETHIOPIC SYLLABLE WEE" #x12CC)
|
||||
("ETHIOPIC SYLLABLE WE" #x12CD)
|
||||
("ETHIOPIC SYLLABLE WO" #x12CE)
|
||||
("ETHIOPIC SYLLABLE PHARYNGEAL A" #x12D0)
|
||||
("ETHIOPIC SYLLABLE PHARYNGEAL U" #x12D1)
|
||||
("ETHIOPIC SYLLABLE PHARYNGEAL I" #x12D2)
|
||||
("ETHIOPIC SYLLABLE PHARYNGEAL AA" #x12D3)
|
||||
("ETHIOPIC SYLLABLE PHARYNGEAL EE" #x12D4)
|
||||
("ETHIOPIC SYLLABLE PHARYNGEAL E" #x12D5)
|
||||
("ETHIOPIC SYLLABLE PHARYNGEAL O" #x12D6)
|
||||
("ETHIOPIC SYLLABLE ZA" #x12D8)
|
||||
("ETHIOPIC SYLLABLE ZU" #x12D9)
|
||||
("ETHIOPIC SYLLABLE ZI" #x12DA)
|
||||
("ETHIOPIC SYLLABLE ZAA" #x12DB)
|
||||
("ETHIOPIC SYLLABLE ZEE" #x12DC)
|
||||
("ETHIOPIC SYLLABLE ZE" #x12DD)
|
||||
("ETHIOPIC SYLLABLE ZO" #x12DE)
|
||||
("ETHIOPIC SYLLABLE ZWA" #x12DF)
|
||||
("ETHIOPIC SYLLABLE ZHA" #x12E0)
|
||||
("ETHIOPIC SYLLABLE ZHU" #x12E1)
|
||||
("ETHIOPIC SYLLABLE ZHI" #x12E2)
|
||||
("ETHIOPIC SYLLABLE ZHAA" #x12E3)
|
||||
("ETHIOPIC SYLLABLE ZHEE" #x12E4)
|
||||
("ETHIOPIC SYLLABLE ZHE" #x12E5)
|
||||
("ETHIOPIC SYLLABLE ZHO" #x12E6)
|
||||
("ETHIOPIC SYLLABLE ZHWA" #x12E7)
|
||||
("ETHIOPIC SYLLABLE YA" #x12E8)
|
||||
("ETHIOPIC SYLLABLE YU" #x12E9)
|
||||
("ETHIOPIC SYLLABLE YI" #x12EA)
|
||||
("ETHIOPIC SYLLABLE YAA" #x12EB)
|
||||
("ETHIOPIC SYLLABLE YEE" #x12EC)
|
||||
("ETHIOPIC SYLLABLE YE" #x12ED)
|
||||
("ETHIOPIC SYLLABLE YO" #x12EE)
|
||||
("ETHIOPIC SYLLABLE DA" #x12F0)
|
||||
("ETHIOPIC SYLLABLE DU" #x12F1)
|
||||
("ETHIOPIC SYLLABLE DI" #x12F2)
|
||||
("ETHIOPIC SYLLABLE DAA" #x12F3)
|
||||
("ETHIOPIC SYLLABLE DEE" #x12F4)
|
||||
("ETHIOPIC SYLLABLE DE" #x12F5)
|
||||
("ETHIOPIC SYLLABLE DO" #x12F6)
|
||||
("ETHIOPIC SYLLABLE DWA" #x12F7)
|
||||
("ETHIOPIC SYLLABLE DDA" #x12F8)
|
||||
("ETHIOPIC SYLLABLE DDU" #x12F9)
|
||||
("ETHIOPIC SYLLABLE DDI" #x12FA)
|
||||
("ETHIOPIC SYLLABLE DDAA" #x12FB)
|
||||
("ETHIOPIC SYLLABLE DDEE" #x12FC)
|
||||
("ETHIOPIC SYLLABLE DDE" #x12FD)
|
||||
("ETHIOPIC SYLLABLE DDO" #x12FE)
|
||||
("ETHIOPIC SYLLABLE DDWA" #x12FF)
|
||||
("ETHIOPIC SYLLABLE JA" #x1300)
|
||||
("ETHIOPIC SYLLABLE JU" #x1301)
|
||||
("ETHIOPIC SYLLABLE JI" #x1302)
|
||||
("ETHIOPIC SYLLABLE JAA" #x1303)
|
||||
("ETHIOPIC SYLLABLE JEE" #x1304)
|
||||
("ETHIOPIC SYLLABLE JE" #x1305)
|
||||
("ETHIOPIC SYLLABLE JO" #x1306)
|
||||
("ETHIOPIC SYLLABLE JWA" #x1307)
|
||||
("ETHIOPIC SYLLABLE GA" #x1308)
|
||||
("ETHIOPIC SYLLABLE GU" #x1309)
|
||||
("ETHIOPIC SYLLABLE GI" #x130A)
|
||||
("ETHIOPIC SYLLABLE GAA" #x130B)
|
||||
("ETHIOPIC SYLLABLE GEE" #x130C)
|
||||
("ETHIOPIC SYLLABLE GE" #x130D)
|
||||
("ETHIOPIC SYLLABLE GO" #x130E)
|
||||
("ETHIOPIC SYLLABLE GWA" #x1310)
|
||||
("ETHIOPIC SYLLABLE GWI" #x1312)
|
||||
("ETHIOPIC SYLLABLE GWAA" #x1313)
|
||||
("ETHIOPIC SYLLABLE GWEE" #x1314)
|
||||
("ETHIOPIC SYLLABLE GWE" #x1315)
|
||||
("ETHIOPIC SYLLABLE GGA" #x1318)
|
||||
("ETHIOPIC SYLLABLE GGU" #x1319)
|
||||
("ETHIOPIC SYLLABLE GGI" #x131A)
|
||||
("ETHIOPIC SYLLABLE GGAA" #x131B)
|
||||
("ETHIOPIC SYLLABLE GGEE" #x131C)
|
||||
("ETHIOPIC SYLLABLE GGE" #x131D)
|
||||
("ETHIOPIC SYLLABLE GGO" #x131E)
|
||||
("ETHIOPIC SYLLABLE THA" #x1320)
|
||||
("ETHIOPIC SYLLABLE THU" #x1321)
|
||||
("ETHIOPIC SYLLABLE THI" #x1322)
|
||||
("ETHIOPIC SYLLABLE THAA" #x1323)
|
||||
("ETHIOPIC SYLLABLE THEE" #x1324)
|
||||
("ETHIOPIC SYLLABLE THE" #x1325)
|
||||
("ETHIOPIC SYLLABLE THO" #x1326)
|
||||
("ETHIOPIC SYLLABLE THWA" #x1327)
|
||||
("ETHIOPIC SYLLABLE CHA" #x1328)
|
||||
("ETHIOPIC SYLLABLE CHU" #x1329)
|
||||
("ETHIOPIC SYLLABLE CHI" #x132A)
|
||||
("ETHIOPIC SYLLABLE CHAA" #x132B)
|
||||
("ETHIOPIC SYLLABLE CHEE" #x132C)
|
||||
("ETHIOPIC SYLLABLE CHE" #x132D)
|
||||
("ETHIOPIC SYLLABLE CHO" #x132E)
|
||||
("ETHIOPIC SYLLABLE CHWA" #x132F)
|
||||
("ETHIOPIC SYLLABLE PHA" #x1330)
|
||||
("ETHIOPIC SYLLABLE PHU" #x1331)
|
||||
("ETHIOPIC SYLLABLE PHI" #x1332)
|
||||
("ETHIOPIC SYLLABLE PHAA" #x1333)
|
||||
("ETHIOPIC SYLLABLE PHEE" #x1334)
|
||||
("ETHIOPIC SYLLABLE PHE" #x1335)
|
||||
("ETHIOPIC SYLLABLE PHO" #x1336)
|
||||
("ETHIOPIC SYLLABLE PHWA" #x1337)
|
||||
("ETHIOPIC SYLLABLE TSA" #x1338)
|
||||
("ETHIOPIC SYLLABLE TSU" #x1339)
|
||||
("ETHIOPIC SYLLABLE TSI" #x133A)
|
||||
("ETHIOPIC SYLLABLE TSAA" #x133B)
|
||||
("ETHIOPIC SYLLABLE TSEE" #x133C)
|
||||
("ETHIOPIC SYLLABLE TSE" #x133D)
|
||||
("ETHIOPIC SYLLABLE TSO" #x133E)
|
||||
("ETHIOPIC SYLLABLE TSWA" #x133F)
|
||||
("ETHIOPIC SYLLABLE TZA" #x1340)
|
||||
("ETHIOPIC SYLLABLE TZU" #x1341)
|
||||
("ETHIOPIC SYLLABLE TZI" #x1342)
|
||||
("ETHIOPIC SYLLABLE TZAA" #x1343)
|
||||
("ETHIOPIC SYLLABLE TZEE" #x1344)
|
||||
("ETHIOPIC SYLLABLE TZE" #x1345)
|
||||
("ETHIOPIC SYLLABLE TZO" #x1346)
|
||||
("ETHIOPIC SYLLABLE FA" #x1348)
|
||||
("ETHIOPIC SYLLABLE FU" #x1349)
|
||||
("ETHIOPIC SYLLABLE FI" #x134A)
|
||||
("ETHIOPIC SYLLABLE FAA" #x134B)
|
||||
("ETHIOPIC SYLLABLE FEE" #x134C)
|
||||
("ETHIOPIC SYLLABLE FE" #x134D)
|
||||
("ETHIOPIC SYLLABLE FO" #x134E)
|
||||
("ETHIOPIC SYLLABLE FWA" #x134F)
|
||||
("ETHIOPIC SYLLABLE PA" #x1350)
|
||||
("ETHIOPIC SYLLABLE PU" #x1351)
|
||||
("ETHIOPIC SYLLABLE PI" #x1352)
|
||||
("ETHIOPIC SYLLABLE PAA" #x1353)
|
||||
("ETHIOPIC SYLLABLE PEE" #x1354)
|
||||
("ETHIOPIC SYLLABLE PE" #x1355)
|
||||
("ETHIOPIC SYLLABLE PO" #x1356)
|
||||
("ETHIOPIC SYLLABLE PWA" #x1357)
|
||||
("ETHIOPIC SYLLABLE RYA" #x1358)
|
||||
("ETHIOPIC SYLLABLE MYA" #x1359)
|
||||
("ETHIOPIC SYLLABLE FYA" #x135A)
|
||||
("ETHIOPIC WORDSPACE" #x1361)
|
||||
("ETHIOPIC FULL STOP" #x1362)
|
||||
("ETHIOPIC COMMA" #x1363)
|
||||
("ETHIOPIC SEMICOLON" #x1364)
|
||||
("ETHIOPIC COLON" #x1365)
|
||||
("ETHIOPIC PREFACE COLON" #x1366)
|
||||
("ETHIOPIC QUESTION MARK" #x1367)
|
||||
("ETHIOPIC PARAGRAPH SEPARATOR" #x1368)
|
||||
("ETHIOPIC DIGIT ONE" #x1369)
|
||||
("ETHIOPIC DIGIT TWO" #x136A)
|
||||
("ETHIOPIC DIGIT THREE" #x136B)
|
||||
("ETHIOPIC DIGIT FOUR" #x136C)
|
||||
("ETHIOPIC DIGIT FIVE" #x136D)
|
||||
("ETHIOPIC DIGIT SIX" #x136E)
|
||||
("ETHIOPIC DIGIT SEVEN" #x136F)
|
||||
("ETHIOPIC DIGIT EIGHT" #x1370)
|
||||
("ETHIOPIC DIGIT NINE" #x1371)
|
||||
("ETHIOPIC NUMBER TEN" #x1372)
|
||||
("ETHIOPIC NUMBER TWENTY" #x1373)
|
||||
("ETHIOPIC NUMBER THIRTY" #x1374)
|
||||
("ETHIOPIC NUMBER FORTY" #x1375)
|
||||
("ETHIOPIC NUMBER FIFTY" #x1376)
|
||||
("ETHIOPIC NUMBER SIXTY" #x1377)
|
||||
("ETHIOPIC NUMBER SEVENTY" #x1378)
|
||||
("ETHIOPIC NUMBER EIGHTY" #x1379)
|
||||
("ETHIOPIC NUMBER NINETY" #x137A)
|
||||
("ETHIOPIC NUMBER HUNDRED" #x137B)
|
||||
("ETHIOPIC NUMBER TEN THOUSAND" #x137C)
|
||||
))
|
||||
|
||||
;; arch-tag: a34092f4-c605-4c01-b619-222a1241853d
|
89
etc/nxml/013A0-013FF.el
Normal file
89
etc/nxml/013A0-013FF.el
Normal file
|
@ -0,0 +1,89 @@
|
|||
(nxml-define-char-name-set 'cherokee
|
||||
'(("CHEROKEE LETTER A" #x13A0)
|
||||
("CHEROKEE LETTER E" #x13A1)
|
||||
("CHEROKEE LETTER I" #x13A2)
|
||||
("CHEROKEE LETTER O" #x13A3)
|
||||
("CHEROKEE LETTER U" #x13A4)
|
||||
("CHEROKEE LETTER V" #x13A5)
|
||||
("CHEROKEE LETTER GA" #x13A6)
|
||||
("CHEROKEE LETTER KA" #x13A7)
|
||||
("CHEROKEE LETTER GE" #x13A8)
|
||||
("CHEROKEE LETTER GI" #x13A9)
|
||||
("CHEROKEE LETTER GO" #x13AA)
|
||||
("CHEROKEE LETTER GU" #x13AB)
|
||||
("CHEROKEE LETTER GV" #x13AC)
|
||||
("CHEROKEE LETTER HA" #x13AD)
|
||||
("CHEROKEE LETTER HE" #x13AE)
|
||||
("CHEROKEE LETTER HI" #x13AF)
|
||||
("CHEROKEE LETTER HO" #x13B0)
|
||||
("CHEROKEE LETTER HU" #x13B1)
|
||||
("CHEROKEE LETTER HV" #x13B2)
|
||||
("CHEROKEE LETTER LA" #x13B3)
|
||||
("CHEROKEE LETTER LE" #x13B4)
|
||||
("CHEROKEE LETTER LI" #x13B5)
|
||||
("CHEROKEE LETTER LO" #x13B6)
|
||||
("CHEROKEE LETTER LU" #x13B7)
|
||||
("CHEROKEE LETTER LV" #x13B8)
|
||||
("CHEROKEE LETTER MA" #x13B9)
|
||||
("CHEROKEE LETTER ME" #x13BA)
|
||||
("CHEROKEE LETTER MI" #x13BB)
|
||||
("CHEROKEE LETTER MO" #x13BC)
|
||||
("CHEROKEE LETTER MU" #x13BD)
|
||||
("CHEROKEE LETTER NA" #x13BE)
|
||||
("CHEROKEE LETTER HNA" #x13BF)
|
||||
("CHEROKEE LETTER NAH" #x13C0)
|
||||
("CHEROKEE LETTER NE" #x13C1)
|
||||
("CHEROKEE LETTER NI" #x13C2)
|
||||
("CHEROKEE LETTER NO" #x13C3)
|
||||
("CHEROKEE LETTER NU" #x13C4)
|
||||
("CHEROKEE LETTER NV" #x13C5)
|
||||
("CHEROKEE LETTER QUA" #x13C6)
|
||||
("CHEROKEE LETTER QUE" #x13C7)
|
||||
("CHEROKEE LETTER QUI" #x13C8)
|
||||
("CHEROKEE LETTER QUO" #x13C9)
|
||||
("CHEROKEE LETTER QUU" #x13CA)
|
||||
("CHEROKEE LETTER QUV" #x13CB)
|
||||
("CHEROKEE LETTER SA" #x13CC)
|
||||
("CHEROKEE LETTER S" #x13CD)
|
||||
("CHEROKEE LETTER SE" #x13CE)
|
||||
("CHEROKEE LETTER SI" #x13CF)
|
||||
("CHEROKEE LETTER SO" #x13D0)
|
||||
("CHEROKEE LETTER SU" #x13D1)
|
||||
("CHEROKEE LETTER SV" #x13D2)
|
||||
("CHEROKEE LETTER DA" #x13D3)
|
||||
("CHEROKEE LETTER TA" #x13D4)
|
||||
("CHEROKEE LETTER DE" #x13D5)
|
||||
("CHEROKEE LETTER TE" #x13D6)
|
||||
("CHEROKEE LETTER DI" #x13D7)
|
||||
("CHEROKEE LETTER TI" #x13D8)
|
||||
("CHEROKEE LETTER DO" #x13D9)
|
||||
("CHEROKEE LETTER DU" #x13DA)
|
||||
("CHEROKEE LETTER DV" #x13DB)
|
||||
("CHEROKEE LETTER DLA" #x13DC)
|
||||
("CHEROKEE LETTER TLA" #x13DD)
|
||||
("CHEROKEE LETTER TLE" #x13DE)
|
||||
("CHEROKEE LETTER TLI" #x13DF)
|
||||
("CHEROKEE LETTER TLO" #x13E0)
|
||||
("CHEROKEE LETTER TLU" #x13E1)
|
||||
("CHEROKEE LETTER TLV" #x13E2)
|
||||
("CHEROKEE LETTER TSA" #x13E3)
|
||||
("CHEROKEE LETTER TSE" #x13E4)
|
||||
("CHEROKEE LETTER TSI" #x13E5)
|
||||
("CHEROKEE LETTER TSO" #x13E6)
|
||||
("CHEROKEE LETTER TSU" #x13E7)
|
||||
("CHEROKEE LETTER TSV" #x13E8)
|
||||
("CHEROKEE LETTER WA" #x13E9)
|
||||
("CHEROKEE LETTER WE" #x13EA)
|
||||
("CHEROKEE LETTER WI" #x13EB)
|
||||
("CHEROKEE LETTER WO" #x13EC)
|
||||
("CHEROKEE LETTER WU" #x13ED)
|
||||
("CHEROKEE LETTER WV" #x13EE)
|
||||
("CHEROKEE LETTER YA" #x13EF)
|
||||
("CHEROKEE LETTER YE" #x13F0)
|
||||
("CHEROKEE LETTER YI" #x13F1)
|
||||
("CHEROKEE LETTER YO" #x13F2)
|
||||
("CHEROKEE LETTER YU" #x13F3)
|
||||
("CHEROKEE LETTER YV" #x13F4)
|
||||
))
|
||||
|
||||
;; arch-tag: 42d669f3-aa0a-4b38-8f60-c1bf05b0d8be
|
634
etc/nxml/01400-0167F.el
Normal file
634
etc/nxml/01400-0167F.el
Normal file
|
@ -0,0 +1,634 @@
|
|||
(nxml-define-char-name-set 'unified-canadian-aboriginal-syllabics
|
||||
'(("CANADIAN SYLLABICS E" #x1401)
|
||||
("CANADIAN SYLLABICS AAI" #x1402)
|
||||
("CANADIAN SYLLABICS I" #x1403)
|
||||
("CANADIAN SYLLABICS II" #x1404)
|
||||
("CANADIAN SYLLABICS O" #x1405)
|
||||
("CANADIAN SYLLABICS OO" #x1406)
|
||||
("CANADIAN SYLLABICS Y-CREE OO" #x1407)
|
||||
("CANADIAN SYLLABICS CARRIER EE" #x1408)
|
||||
("CANADIAN SYLLABICS CARRIER I" #x1409)
|
||||
("CANADIAN SYLLABICS A" #x140A)
|
||||
("CANADIAN SYLLABICS AA" #x140B)
|
||||
("CANADIAN SYLLABICS WE" #x140C)
|
||||
("CANADIAN SYLLABICS WEST-CREE WE" #x140D)
|
||||
("CANADIAN SYLLABICS WI" #x140E)
|
||||
("CANADIAN SYLLABICS WEST-CREE WI" #x140F)
|
||||
("CANADIAN SYLLABICS WII" #x1410)
|
||||
("CANADIAN SYLLABICS WEST-CREE WII" #x1411)
|
||||
("CANADIAN SYLLABICS WO" #x1412)
|
||||
("CANADIAN SYLLABICS WEST-CREE WO" #x1413)
|
||||
("CANADIAN SYLLABICS WOO" #x1414)
|
||||
("CANADIAN SYLLABICS WEST-CREE WOO" #x1415)
|
||||
("CANADIAN SYLLABICS NASKAPI WOO" #x1416)
|
||||
("CANADIAN SYLLABICS WA" #x1417)
|
||||
("CANADIAN SYLLABICS WEST-CREE WA" #x1418)
|
||||
("CANADIAN SYLLABICS WAA" #x1419)
|
||||
("CANADIAN SYLLABICS WEST-CREE WAA" #x141A)
|
||||
("CANADIAN SYLLABICS NASKAPI WAA" #x141B)
|
||||
("CANADIAN SYLLABICS AI" #x141C)
|
||||
("CANADIAN SYLLABICS Y-CREE W" #x141D)
|
||||
("CANADIAN SYLLABICS GLOTTAL STOP" #x141E)
|
||||
("CANADIAN SYLLABICS FINAL ACUTE" #x141F)
|
||||
("CANADIAN SYLLABICS FINAL GRAVE" #x1420)
|
||||
("CANADIAN SYLLABICS FINAL BOTTOM HALF RING" #x1421)
|
||||
("CANADIAN SYLLABICS FINAL TOP HALF RING" #x1422)
|
||||
("CANADIAN SYLLABICS FINAL RIGHT HALF RING" #x1423)
|
||||
("CANADIAN SYLLABICS FINAL RING" #x1424)
|
||||
("CANADIAN SYLLABICS FINAL DOUBLE ACUTE" #x1425)
|
||||
("CANADIAN SYLLABICS FINAL DOUBLE SHORT VERTICAL STROKES" #x1426)
|
||||
("CANADIAN SYLLABICS FINAL MIDDLE DOT" #x1427)
|
||||
("CANADIAN SYLLABICS FINAL SHORT HORIZONTAL STROKE" #x1428)
|
||||
("CANADIAN SYLLABICS FINAL PLUS" #x1429)
|
||||
("CANADIAN SYLLABICS FINAL DOWN TACK" #x142A)
|
||||
("CANADIAN SYLLABICS EN" #x142B)
|
||||
("CANADIAN SYLLABICS IN" #x142C)
|
||||
("CANADIAN SYLLABICS ON" #x142D)
|
||||
("CANADIAN SYLLABICS AN" #x142E)
|
||||
("CANADIAN SYLLABICS PE" #x142F)
|
||||
("CANADIAN SYLLABICS PAAI" #x1430)
|
||||
("CANADIAN SYLLABICS PI" #x1431)
|
||||
("CANADIAN SYLLABICS PII" #x1432)
|
||||
("CANADIAN SYLLABICS PO" #x1433)
|
||||
("CANADIAN SYLLABICS POO" #x1434)
|
||||
("CANADIAN SYLLABICS Y-CREE POO" #x1435)
|
||||
("CANADIAN SYLLABICS CARRIER HEE" #x1436)
|
||||
("CANADIAN SYLLABICS CARRIER HI" #x1437)
|
||||
("CANADIAN SYLLABICS PA" #x1438)
|
||||
("CANADIAN SYLLABICS PAA" #x1439)
|
||||
("CANADIAN SYLLABICS PWE" #x143A)
|
||||
("CANADIAN SYLLABICS WEST-CREE PWE" #x143B)
|
||||
("CANADIAN SYLLABICS PWI" #x143C)
|
||||
("CANADIAN SYLLABICS WEST-CREE PWI" #x143D)
|
||||
("CANADIAN SYLLABICS PWII" #x143E)
|
||||
("CANADIAN SYLLABICS WEST-CREE PWII" #x143F)
|
||||
("CANADIAN SYLLABICS PWO" #x1440)
|
||||
("CANADIAN SYLLABICS WEST-CREE PWO" #x1441)
|
||||
("CANADIAN SYLLABICS PWOO" #x1442)
|
||||
("CANADIAN SYLLABICS WEST-CREE PWOO" #x1443)
|
||||
("CANADIAN SYLLABICS PWA" #x1444)
|
||||
("CANADIAN SYLLABICS WEST-CREE PWA" #x1445)
|
||||
("CANADIAN SYLLABICS PWAA" #x1446)
|
||||
("CANADIAN SYLLABICS WEST-CREE PWAA" #x1447)
|
||||
("CANADIAN SYLLABICS Y-CREE PWAA" #x1448)
|
||||
("CANADIAN SYLLABICS P" #x1449)
|
||||
("CANADIAN SYLLABICS WEST-CREE P" #x144A)
|
||||
("CANADIAN SYLLABICS CARRIER H" #x144B)
|
||||
("CANADIAN SYLLABICS TE" #x144C)
|
||||
("CANADIAN SYLLABICS TAAI" #x144D)
|
||||
("CANADIAN SYLLABICS TI" #x144E)
|
||||
("CANADIAN SYLLABICS TII" #x144F)
|
||||
("CANADIAN SYLLABICS TO" #x1450)
|
||||
("CANADIAN SYLLABICS TOO" #x1451)
|
||||
("CANADIAN SYLLABICS Y-CREE TOO" #x1452)
|
||||
("CANADIAN SYLLABICS CARRIER DEE" #x1453)
|
||||
("CANADIAN SYLLABICS CARRIER DI" #x1454)
|
||||
("CANADIAN SYLLABICS TA" #x1455)
|
||||
("CANADIAN SYLLABICS TAA" #x1456)
|
||||
("CANADIAN SYLLABICS TWE" #x1457)
|
||||
("CANADIAN SYLLABICS WEST-CREE TWE" #x1458)
|
||||
("CANADIAN SYLLABICS TWI" #x1459)
|
||||
("CANADIAN SYLLABICS WEST-CREE TWI" #x145A)
|
||||
("CANADIAN SYLLABICS TWII" #x145B)
|
||||
("CANADIAN SYLLABICS WEST-CREE TWII" #x145C)
|
||||
("CANADIAN SYLLABICS TWO" #x145D)
|
||||
("CANADIAN SYLLABICS WEST-CREE TWO" #x145E)
|
||||
("CANADIAN SYLLABICS TWOO" #x145F)
|
||||
("CANADIAN SYLLABICS WEST-CREE TWOO" #x1460)
|
||||
("CANADIAN SYLLABICS TWA" #x1461)
|
||||
("CANADIAN SYLLABICS WEST-CREE TWA" #x1462)
|
||||
("CANADIAN SYLLABICS TWAA" #x1463)
|
||||
("CANADIAN SYLLABICS WEST-CREE TWAA" #x1464)
|
||||
("CANADIAN SYLLABICS NASKAPI TWAA" #x1465)
|
||||
("CANADIAN SYLLABICS T" #x1466)
|
||||
("CANADIAN SYLLABICS TTE" #x1467)
|
||||
("CANADIAN SYLLABICS TTI" #x1468)
|
||||
("CANADIAN SYLLABICS TTO" #x1469)
|
||||
("CANADIAN SYLLABICS TTA" #x146A)
|
||||
("CANADIAN SYLLABICS KE" #x146B)
|
||||
("CANADIAN SYLLABICS KAAI" #x146C)
|
||||
("CANADIAN SYLLABICS KI" #x146D)
|
||||
("CANADIAN SYLLABICS KII" #x146E)
|
||||
("CANADIAN SYLLABICS KO" #x146F)
|
||||
("CANADIAN SYLLABICS KOO" #x1470)
|
||||
("CANADIAN SYLLABICS Y-CREE KOO" #x1471)
|
||||
("CANADIAN SYLLABICS KA" #x1472)
|
||||
("CANADIAN SYLLABICS KAA" #x1473)
|
||||
("CANADIAN SYLLABICS KWE" #x1474)
|
||||
("CANADIAN SYLLABICS WEST-CREE KWE" #x1475)
|
||||
("CANADIAN SYLLABICS KWI" #x1476)
|
||||
("CANADIAN SYLLABICS WEST-CREE KWI" #x1477)
|
||||
("CANADIAN SYLLABICS KWII" #x1478)
|
||||
("CANADIAN SYLLABICS WEST-CREE KWII" #x1479)
|
||||
("CANADIAN SYLLABICS KWO" #x147A)
|
||||
("CANADIAN SYLLABICS WEST-CREE KWO" #x147B)
|
||||
("CANADIAN SYLLABICS KWOO" #x147C)
|
||||
("CANADIAN SYLLABICS WEST-CREE KWOO" #x147D)
|
||||
("CANADIAN SYLLABICS KWA" #x147E)
|
||||
("CANADIAN SYLLABICS WEST-CREE KWA" #x147F)
|
||||
("CANADIAN SYLLABICS KWAA" #x1480)
|
||||
("CANADIAN SYLLABICS WEST-CREE KWAA" #x1481)
|
||||
("CANADIAN SYLLABICS NASKAPI KWAA" #x1482)
|
||||
("CANADIAN SYLLABICS K" #x1483)
|
||||
("CANADIAN SYLLABICS KW" #x1484)
|
||||
("CANADIAN SYLLABICS SOUTH-SLAVEY KEH" #x1485)
|
||||
("CANADIAN SYLLABICS SOUTH-SLAVEY KIH" #x1486)
|
||||
("CANADIAN SYLLABICS SOUTH-SLAVEY KOH" #x1487)
|
||||
("CANADIAN SYLLABICS SOUTH-SLAVEY KAH" #x1488)
|
||||
("CANADIAN SYLLABICS CE" #x1489)
|
||||
("CANADIAN SYLLABICS CAAI" #x148A)
|
||||
("CANADIAN SYLLABICS CI" #x148B)
|
||||
("CANADIAN SYLLABICS CII" #x148C)
|
||||
("CANADIAN SYLLABICS CO" #x148D)
|
||||
("CANADIAN SYLLABICS COO" #x148E)
|
||||
("CANADIAN SYLLABICS Y-CREE COO" #x148F)
|
||||
("CANADIAN SYLLABICS CA" #x1490)
|
||||
("CANADIAN SYLLABICS CAA" #x1491)
|
||||
("CANADIAN SYLLABICS CWE" #x1492)
|
||||
("CANADIAN SYLLABICS WEST-CREE CWE" #x1493)
|
||||
("CANADIAN SYLLABICS CWI" #x1494)
|
||||
("CANADIAN SYLLABICS WEST-CREE CWI" #x1495)
|
||||
("CANADIAN SYLLABICS CWII" #x1496)
|
||||
("CANADIAN SYLLABICS WEST-CREE CWII" #x1497)
|
||||
("CANADIAN SYLLABICS CWO" #x1498)
|
||||
("CANADIAN SYLLABICS WEST-CREE CWO" #x1499)
|
||||
("CANADIAN SYLLABICS CWOO" #x149A)
|
||||
("CANADIAN SYLLABICS WEST-CREE CWOO" #x149B)
|
||||
("CANADIAN SYLLABICS CWA" #x149C)
|
||||
("CANADIAN SYLLABICS WEST-CREE CWA" #x149D)
|
||||
("CANADIAN SYLLABICS CWAA" #x149E)
|
||||
("CANADIAN SYLLABICS WEST-CREE CWAA" #x149F)
|
||||
("CANADIAN SYLLABICS NASKAPI CWAA" #x14A0)
|
||||
("CANADIAN SYLLABICS C" #x14A1)
|
||||
("CANADIAN SYLLABICS SAYISI TH" #x14A2)
|
||||
("CANADIAN SYLLABICS ME" #x14A3)
|
||||
("CANADIAN SYLLABICS MAAI" #x14A4)
|
||||
("CANADIAN SYLLABICS MI" #x14A5)
|
||||
("CANADIAN SYLLABICS MII" #x14A6)
|
||||
("CANADIAN SYLLABICS MO" #x14A7)
|
||||
("CANADIAN SYLLABICS MOO" #x14A8)
|
||||
("CANADIAN SYLLABICS Y-CREE MOO" #x14A9)
|
||||
("CANADIAN SYLLABICS MA" #x14AA)
|
||||
("CANADIAN SYLLABICS MAA" #x14AB)
|
||||
("CANADIAN SYLLABICS MWE" #x14AC)
|
||||
("CANADIAN SYLLABICS WEST-CREE MWE" #x14AD)
|
||||
("CANADIAN SYLLABICS MWI" #x14AE)
|
||||
("CANADIAN SYLLABICS WEST-CREE MWI" #x14AF)
|
||||
("CANADIAN SYLLABICS MWII" #x14B0)
|
||||
("CANADIAN SYLLABICS WEST-CREE MWII" #x14B1)
|
||||
("CANADIAN SYLLABICS MWO" #x14B2)
|
||||
("CANADIAN SYLLABICS WEST-CREE MWO" #x14B3)
|
||||
("CANADIAN SYLLABICS MWOO" #x14B4)
|
||||
("CANADIAN SYLLABICS WEST-CREE MWOO" #x14B5)
|
||||
("CANADIAN SYLLABICS MWA" #x14B6)
|
||||
("CANADIAN SYLLABICS WEST-CREE MWA" #x14B7)
|
||||
("CANADIAN SYLLABICS MWAA" #x14B8)
|
||||
("CANADIAN SYLLABICS WEST-CREE MWAA" #x14B9)
|
||||
("CANADIAN SYLLABICS NASKAPI MWAA" #x14BA)
|
||||
("CANADIAN SYLLABICS M" #x14BB)
|
||||
("CANADIAN SYLLABICS WEST-CREE M" #x14BC)
|
||||
("CANADIAN SYLLABICS MH" #x14BD)
|
||||
("CANADIAN SYLLABICS ATHAPASCAN M" #x14BE)
|
||||
("CANADIAN SYLLABICS SAYISI M" #x14BF)
|
||||
("CANADIAN SYLLABICS NE" #x14C0)
|
||||
("CANADIAN SYLLABICS NAAI" #x14C1)
|
||||
("CANADIAN SYLLABICS NI" #x14C2)
|
||||
("CANADIAN SYLLABICS NII" #x14C3)
|
||||
("CANADIAN SYLLABICS NO" #x14C4)
|
||||
("CANADIAN SYLLABICS NOO" #x14C5)
|
||||
("CANADIAN SYLLABICS Y-CREE NOO" #x14C6)
|
||||
("CANADIAN SYLLABICS NA" #x14C7)
|
||||
("CANADIAN SYLLABICS NAA" #x14C8)
|
||||
("CANADIAN SYLLABICS NWE" #x14C9)
|
||||
("CANADIAN SYLLABICS WEST-CREE NWE" #x14CA)
|
||||
("CANADIAN SYLLABICS NWA" #x14CB)
|
||||
("CANADIAN SYLLABICS WEST-CREE NWA" #x14CC)
|
||||
("CANADIAN SYLLABICS NWAA" #x14CD)
|
||||
("CANADIAN SYLLABICS WEST-CREE NWAA" #x14CE)
|
||||
("CANADIAN SYLLABICS NASKAPI NWAA" #x14CF)
|
||||
("CANADIAN SYLLABICS N" #x14D0)
|
||||
("CANADIAN SYLLABICS CARRIER NG" #x14D1)
|
||||
("CANADIAN SYLLABICS NH" #x14D2)
|
||||
("CANADIAN SYLLABICS LE" #x14D3)
|
||||
("CANADIAN SYLLABICS LAAI" #x14D4)
|
||||
("CANADIAN SYLLABICS LI" #x14D5)
|
||||
("CANADIAN SYLLABICS LII" #x14D6)
|
||||
("CANADIAN SYLLABICS LO" #x14D7)
|
||||
("CANADIAN SYLLABICS LOO" #x14D8)
|
||||
("CANADIAN SYLLABICS Y-CREE LOO" #x14D9)
|
||||
("CANADIAN SYLLABICS LA" #x14DA)
|
||||
("CANADIAN SYLLABICS LAA" #x14DB)
|
||||
("CANADIAN SYLLABICS LWE" #x14DC)
|
||||
("CANADIAN SYLLABICS WEST-CREE LWE" #x14DD)
|
||||
("CANADIAN SYLLABICS LWI" #x14DE)
|
||||
("CANADIAN SYLLABICS WEST-CREE LWI" #x14DF)
|
||||
("CANADIAN SYLLABICS LWII" #x14E0)
|
||||
("CANADIAN SYLLABICS WEST-CREE LWII" #x14E1)
|
||||
("CANADIAN SYLLABICS LWO" #x14E2)
|
||||
("CANADIAN SYLLABICS WEST-CREE LWO" #x14E3)
|
||||
("CANADIAN SYLLABICS LWOO" #x14E4)
|
||||
("CANADIAN SYLLABICS WEST-CREE LWOO" #x14E5)
|
||||
("CANADIAN SYLLABICS LWA" #x14E6)
|
||||
("CANADIAN SYLLABICS WEST-CREE LWA" #x14E7)
|
||||
("CANADIAN SYLLABICS LWAA" #x14E8)
|
||||
("CANADIAN SYLLABICS WEST-CREE LWAA" #x14E9)
|
||||
("CANADIAN SYLLABICS L" #x14EA)
|
||||
("CANADIAN SYLLABICS WEST-CREE L" #x14EB)
|
||||
("CANADIAN SYLLABICS MEDIAL L" #x14EC)
|
||||
("CANADIAN SYLLABICS SE" #x14ED)
|
||||
("CANADIAN SYLLABICS SAAI" #x14EE)
|
||||
("CANADIAN SYLLABICS SI" #x14EF)
|
||||
("CANADIAN SYLLABICS SII" #x14F0)
|
||||
("CANADIAN SYLLABICS SO" #x14F1)
|
||||
("CANADIAN SYLLABICS SOO" #x14F2)
|
||||
("CANADIAN SYLLABICS Y-CREE SOO" #x14F3)
|
||||
("CANADIAN SYLLABICS SA" #x14F4)
|
||||
("CANADIAN SYLLABICS SAA" #x14F5)
|
||||
("CANADIAN SYLLABICS SWE" #x14F6)
|
||||
("CANADIAN SYLLABICS WEST-CREE SWE" #x14F7)
|
||||
("CANADIAN SYLLABICS SWI" #x14F8)
|
||||
("CANADIAN SYLLABICS WEST-CREE SWI" #x14F9)
|
||||
("CANADIAN SYLLABICS SWII" #x14FA)
|
||||
("CANADIAN SYLLABICS WEST-CREE SWII" #x14FB)
|
||||
("CANADIAN SYLLABICS SWO" #x14FC)
|
||||
("CANADIAN SYLLABICS WEST-CREE SWO" #x14FD)
|
||||
("CANADIAN SYLLABICS SWOO" #x14FE)
|
||||
("CANADIAN SYLLABICS WEST-CREE SWOO" #x14FF)
|
||||
("CANADIAN SYLLABICS SWA" #x1500)
|
||||
("CANADIAN SYLLABICS WEST-CREE SWA" #x1501)
|
||||
("CANADIAN SYLLABICS SWAA" #x1502)
|
||||
("CANADIAN SYLLABICS WEST-CREE SWAA" #x1503)
|
||||
("CANADIAN SYLLABICS NASKAPI SWAA" #x1504)
|
||||
("CANADIAN SYLLABICS S" #x1505)
|
||||
("CANADIAN SYLLABICS ATHAPASCAN S" #x1506)
|
||||
("CANADIAN SYLLABICS SW" #x1507)
|
||||
("CANADIAN SYLLABICS BLACKFOOT S" #x1508)
|
||||
("CANADIAN SYLLABICS MOOSE-CREE SK" #x1509)
|
||||
("CANADIAN SYLLABICS NASKAPI SKW" #x150A)
|
||||
("CANADIAN SYLLABICS NASKAPI S-W" #x150B)
|
||||
("CANADIAN SYLLABICS NASKAPI SPWA" #x150C)
|
||||
("CANADIAN SYLLABICS NASKAPI STWA" #x150D)
|
||||
("CANADIAN SYLLABICS NASKAPI SKWA" #x150E)
|
||||
("CANADIAN SYLLABICS NASKAPI SCWA" #x150F)
|
||||
("CANADIAN SYLLABICS SHE" #x1510)
|
||||
("CANADIAN SYLLABICS SHI" #x1511)
|
||||
("CANADIAN SYLLABICS SHII" #x1512)
|
||||
("CANADIAN SYLLABICS SHO" #x1513)
|
||||
("CANADIAN SYLLABICS SHOO" #x1514)
|
||||
("CANADIAN SYLLABICS SHA" #x1515)
|
||||
("CANADIAN SYLLABICS SHAA" #x1516)
|
||||
("CANADIAN SYLLABICS SHWE" #x1517)
|
||||
("CANADIAN SYLLABICS WEST-CREE SHWE" #x1518)
|
||||
("CANADIAN SYLLABICS SHWI" #x1519)
|
||||
("CANADIAN SYLLABICS WEST-CREE SHWI" #x151A)
|
||||
("CANADIAN SYLLABICS SHWII" #x151B)
|
||||
("CANADIAN SYLLABICS WEST-CREE SHWII" #x151C)
|
||||
("CANADIAN SYLLABICS SHWO" #x151D)
|
||||
("CANADIAN SYLLABICS WEST-CREE SHWO" #x151E)
|
||||
("CANADIAN SYLLABICS SHWOO" #x151F)
|
||||
("CANADIAN SYLLABICS WEST-CREE SHWOO" #x1520)
|
||||
("CANADIAN SYLLABICS SHWA" #x1521)
|
||||
("CANADIAN SYLLABICS WEST-CREE SHWA" #x1522)
|
||||
("CANADIAN SYLLABICS SHWAA" #x1523)
|
||||
("CANADIAN SYLLABICS WEST-CREE SHWAA" #x1524)
|
||||
("CANADIAN SYLLABICS SH" #x1525)
|
||||
("CANADIAN SYLLABICS YE" #x1526)
|
||||
("CANADIAN SYLLABICS YAAI" #x1527)
|
||||
("CANADIAN SYLLABICS YI" #x1528)
|
||||
("CANADIAN SYLLABICS YII" #x1529)
|
||||
("CANADIAN SYLLABICS YO" #x152A)
|
||||
("CANADIAN SYLLABICS YOO" #x152B)
|
||||
("CANADIAN SYLLABICS Y-CREE YOO" #x152C)
|
||||
("CANADIAN SYLLABICS YA" #x152D)
|
||||
("CANADIAN SYLLABICS YAA" #x152E)
|
||||
("CANADIAN SYLLABICS YWE" #x152F)
|
||||
("CANADIAN SYLLABICS WEST-CREE YWE" #x1530)
|
||||
("CANADIAN SYLLABICS YWI" #x1531)
|
||||
("CANADIAN SYLLABICS WEST-CREE YWI" #x1532)
|
||||
("CANADIAN SYLLABICS YWII" #x1533)
|
||||
("CANADIAN SYLLABICS WEST-CREE YWII" #x1534)
|
||||
("CANADIAN SYLLABICS YWO" #x1535)
|
||||
("CANADIAN SYLLABICS WEST-CREE YWO" #x1536)
|
||||
("CANADIAN SYLLABICS YWOO" #x1537)
|
||||
("CANADIAN SYLLABICS WEST-CREE YWOO" #x1538)
|
||||
("CANADIAN SYLLABICS YWA" #x1539)
|
||||
("CANADIAN SYLLABICS WEST-CREE YWA" #x153A)
|
||||
("CANADIAN SYLLABICS YWAA" #x153B)
|
||||
("CANADIAN SYLLABICS WEST-CREE YWAA" #x153C)
|
||||
("CANADIAN SYLLABICS NASKAPI YWAA" #x153D)
|
||||
("CANADIAN SYLLABICS Y" #x153E)
|
||||
("CANADIAN SYLLABICS BIBLE-CREE Y" #x153F)
|
||||
("CANADIAN SYLLABICS WEST-CREE Y" #x1540)
|
||||
("CANADIAN SYLLABICS SAYISI YI" #x1541)
|
||||
("CANADIAN SYLLABICS RE" #x1542)
|
||||
("CANADIAN SYLLABICS R-CREE RE" #x1543)
|
||||
("CANADIAN SYLLABICS WEST-CREE LE" #x1544)
|
||||
("CANADIAN SYLLABICS RAAI" #x1545)
|
||||
("CANADIAN SYLLABICS RI" #x1546)
|
||||
("CANADIAN SYLLABICS RII" #x1547)
|
||||
("CANADIAN SYLLABICS RO" #x1548)
|
||||
("CANADIAN SYLLABICS ROO" #x1549)
|
||||
("CANADIAN SYLLABICS WEST-CREE LO" #x154A)
|
||||
("CANADIAN SYLLABICS RA" #x154B)
|
||||
("CANADIAN SYLLABICS RAA" #x154C)
|
||||
("CANADIAN SYLLABICS WEST-CREE LA" #x154D)
|
||||
("CANADIAN SYLLABICS RWAA" #x154E)
|
||||
("CANADIAN SYLLABICS WEST-CREE RWAA" #x154F)
|
||||
("CANADIAN SYLLABICS R" #x1550)
|
||||
("CANADIAN SYLLABICS WEST-CREE R" #x1551)
|
||||
("CANADIAN SYLLABICS MEDIAL R" #x1552)
|
||||
("CANADIAN SYLLABICS FE" #x1553)
|
||||
("CANADIAN SYLLABICS FAAI" #x1554)
|
||||
("CANADIAN SYLLABICS FI" #x1555)
|
||||
("CANADIAN SYLLABICS FII" #x1556)
|
||||
("CANADIAN SYLLABICS FO" #x1557)
|
||||
("CANADIAN SYLLABICS FOO" #x1558)
|
||||
("CANADIAN SYLLABICS FA" #x1559)
|
||||
("CANADIAN SYLLABICS FAA" #x155A)
|
||||
("CANADIAN SYLLABICS FWAA" #x155B)
|
||||
("CANADIAN SYLLABICS WEST-CREE FWAA" #x155C)
|
||||
("CANADIAN SYLLABICS F" #x155D)
|
||||
("CANADIAN SYLLABICS THE" #x155E)
|
||||
("CANADIAN SYLLABICS N-CREE THE" #x155F)
|
||||
("CANADIAN SYLLABICS THI" #x1560)
|
||||
("CANADIAN SYLLABICS N-CREE THI" #x1561)
|
||||
("CANADIAN SYLLABICS THII" #x1562)
|
||||
("CANADIAN SYLLABICS N-CREE THII" #x1563)
|
||||
("CANADIAN SYLLABICS THO" #x1564)
|
||||
("CANADIAN SYLLABICS THOO" #x1565)
|
||||
("CANADIAN SYLLABICS THA" #x1566)
|
||||
("CANADIAN SYLLABICS THAA" #x1567)
|
||||
("CANADIAN SYLLABICS THWAA" #x1568)
|
||||
("CANADIAN SYLLABICS WEST-CREE THWAA" #x1569)
|
||||
("CANADIAN SYLLABICS TH" #x156A)
|
||||
("CANADIAN SYLLABICS TTHE" #x156B)
|
||||
("CANADIAN SYLLABICS TTHI" #x156C)
|
||||
("CANADIAN SYLLABICS TTHO" #x156D)
|
||||
("CANADIAN SYLLABICS TTHA" #x156E)
|
||||
("CANADIAN SYLLABICS TTH" #x156F)
|
||||
("CANADIAN SYLLABICS TYE" #x1570)
|
||||
("CANADIAN SYLLABICS TYI" #x1571)
|
||||
("CANADIAN SYLLABICS TYO" #x1572)
|
||||
("CANADIAN SYLLABICS TYA" #x1573)
|
||||
("CANADIAN SYLLABICS NUNAVIK HE" #x1574)
|
||||
("CANADIAN SYLLABICS NUNAVIK HI" #x1575)
|
||||
("CANADIAN SYLLABICS NUNAVIK HII" #x1576)
|
||||
("CANADIAN SYLLABICS NUNAVIK HO" #x1577)
|
||||
("CANADIAN SYLLABICS NUNAVIK HOO" #x1578)
|
||||
("CANADIAN SYLLABICS NUNAVIK HA" #x1579)
|
||||
("CANADIAN SYLLABICS NUNAVIK HAA" #x157A)
|
||||
("CANADIAN SYLLABICS NUNAVIK H" #x157B)
|
||||
("CANADIAN SYLLABICS NUNAVUT H" #x157C)
|
||||
("CANADIAN SYLLABICS HK" #x157D)
|
||||
("CANADIAN SYLLABICS QAAI" #x157E)
|
||||
("CANADIAN SYLLABICS QI" #x157F)
|
||||
("CANADIAN SYLLABICS QII" #x1580)
|
||||
("CANADIAN SYLLABICS QO" #x1581)
|
||||
("CANADIAN SYLLABICS QOO" #x1582)
|
||||
("CANADIAN SYLLABICS QA" #x1583)
|
||||
("CANADIAN SYLLABICS QAA" #x1584)
|
||||
("CANADIAN SYLLABICS Q" #x1585)
|
||||
("CANADIAN SYLLABICS TLHE" #x1586)
|
||||
("CANADIAN SYLLABICS TLHI" #x1587)
|
||||
("CANADIAN SYLLABICS TLHO" #x1588)
|
||||
("CANADIAN SYLLABICS TLHA" #x1589)
|
||||
("CANADIAN SYLLABICS WEST-CREE RE" #x158A)
|
||||
("CANADIAN SYLLABICS WEST-CREE RI" #x158B)
|
||||
("CANADIAN SYLLABICS WEST-CREE RO" #x158C)
|
||||
("CANADIAN SYLLABICS WEST-CREE RA" #x158D)
|
||||
("CANADIAN SYLLABICS NGAAI" #x158E)
|
||||
("CANADIAN SYLLABICS NGI" #x158F)
|
||||
("CANADIAN SYLLABICS NGII" #x1590)
|
||||
("CANADIAN SYLLABICS NGO" #x1591)
|
||||
("CANADIAN SYLLABICS NGOO" #x1592)
|
||||
("CANADIAN SYLLABICS NGA" #x1593)
|
||||
("CANADIAN SYLLABICS NGAA" #x1594)
|
||||
("CANADIAN SYLLABICS NG" #x1595)
|
||||
("CANADIAN SYLLABICS NNG" #x1596)
|
||||
("CANADIAN SYLLABICS SAYISI SHE" #x1597)
|
||||
("CANADIAN SYLLABICS SAYISI SHI" #x1598)
|
||||
("CANADIAN SYLLABICS SAYISI SHO" #x1599)
|
||||
("CANADIAN SYLLABICS SAYISI SHA" #x159A)
|
||||
("CANADIAN SYLLABICS WOODS-CREE THE" #x159B)
|
||||
("CANADIAN SYLLABICS WOODS-CREE THI" #x159C)
|
||||
("CANADIAN SYLLABICS WOODS-CREE THO" #x159D)
|
||||
("CANADIAN SYLLABICS WOODS-CREE THA" #x159E)
|
||||
("CANADIAN SYLLABICS WOODS-CREE TH" #x159F)
|
||||
("CANADIAN SYLLABICS LHI" #x15A0)
|
||||
("CANADIAN SYLLABICS LHII" #x15A1)
|
||||
("CANADIAN SYLLABICS LHO" #x15A2)
|
||||
("CANADIAN SYLLABICS LHOO" #x15A3)
|
||||
("CANADIAN SYLLABICS LHA" #x15A4)
|
||||
("CANADIAN SYLLABICS LHAA" #x15A5)
|
||||
("CANADIAN SYLLABICS LH" #x15A6)
|
||||
("CANADIAN SYLLABICS TH-CREE THE" #x15A7)
|
||||
("CANADIAN SYLLABICS TH-CREE THI" #x15A8)
|
||||
("CANADIAN SYLLABICS TH-CREE THII" #x15A9)
|
||||
("CANADIAN SYLLABICS TH-CREE THO" #x15AA)
|
||||
("CANADIAN SYLLABICS TH-CREE THOO" #x15AB)
|
||||
("CANADIAN SYLLABICS TH-CREE THA" #x15AC)
|
||||
("CANADIAN SYLLABICS TH-CREE THAA" #x15AD)
|
||||
("CANADIAN SYLLABICS TH-CREE TH" #x15AE)
|
||||
("CANADIAN SYLLABICS AIVILIK B" #x15AF)
|
||||
("CANADIAN SYLLABICS BLACKFOOT E" #x15B0)
|
||||
("CANADIAN SYLLABICS BLACKFOOT I" #x15B1)
|
||||
("CANADIAN SYLLABICS BLACKFOOT O" #x15B2)
|
||||
("CANADIAN SYLLABICS BLACKFOOT A" #x15B3)
|
||||
("CANADIAN SYLLABICS BLACKFOOT WE" #x15B4)
|
||||
("CANADIAN SYLLABICS BLACKFOOT WI" #x15B5)
|
||||
("CANADIAN SYLLABICS BLACKFOOT WO" #x15B6)
|
||||
("CANADIAN SYLLABICS BLACKFOOT WA" #x15B7)
|
||||
("CANADIAN SYLLABICS BLACKFOOT NE" #x15B8)
|
||||
("CANADIAN SYLLABICS BLACKFOOT NI" #x15B9)
|
||||
("CANADIAN SYLLABICS BLACKFOOT NO" #x15BA)
|
||||
("CANADIAN SYLLABICS BLACKFOOT NA" #x15BB)
|
||||
("CANADIAN SYLLABICS BLACKFOOT KE" #x15BC)
|
||||
("CANADIAN SYLLABICS BLACKFOOT KI" #x15BD)
|
||||
("CANADIAN SYLLABICS BLACKFOOT KO" #x15BE)
|
||||
("CANADIAN SYLLABICS BLACKFOOT KA" #x15BF)
|
||||
("CANADIAN SYLLABICS SAYISI HE" #x15C0)
|
||||
("CANADIAN SYLLABICS SAYISI HI" #x15C1)
|
||||
("CANADIAN SYLLABICS SAYISI HO" #x15C2)
|
||||
("CANADIAN SYLLABICS SAYISI HA" #x15C3)
|
||||
("CANADIAN SYLLABICS CARRIER GHU" #x15C4)
|
||||
("CANADIAN SYLLABICS CARRIER GHO" #x15C5)
|
||||
("CANADIAN SYLLABICS CARRIER GHE" #x15C6)
|
||||
("CANADIAN SYLLABICS CARRIER GHEE" #x15C7)
|
||||
("CANADIAN SYLLABICS CARRIER GHI" #x15C8)
|
||||
("CANADIAN SYLLABICS CARRIER GHA" #x15C9)
|
||||
("CANADIAN SYLLABICS CARRIER RU" #x15CA)
|
||||
("CANADIAN SYLLABICS CARRIER RO" #x15CB)
|
||||
("CANADIAN SYLLABICS CARRIER RE" #x15CC)
|
||||
("CANADIAN SYLLABICS CARRIER REE" #x15CD)
|
||||
("CANADIAN SYLLABICS CARRIER RI" #x15CE)
|
||||
("CANADIAN SYLLABICS CARRIER RA" #x15CF)
|
||||
("CANADIAN SYLLABICS CARRIER WU" #x15D0)
|
||||
("CANADIAN SYLLABICS CARRIER WO" #x15D1)
|
||||
("CANADIAN SYLLABICS CARRIER WE" #x15D2)
|
||||
("CANADIAN SYLLABICS CARRIER WEE" #x15D3)
|
||||
("CANADIAN SYLLABICS CARRIER WI" #x15D4)
|
||||
("CANADIAN SYLLABICS CARRIER WA" #x15D5)
|
||||
("CANADIAN SYLLABICS CARRIER HWU" #x15D6)
|
||||
("CANADIAN SYLLABICS CARRIER HWO" #x15D7)
|
||||
("CANADIAN SYLLABICS CARRIER HWE" #x15D8)
|
||||
("CANADIAN SYLLABICS CARRIER HWEE" #x15D9)
|
||||
("CANADIAN SYLLABICS CARRIER HWI" #x15DA)
|
||||
("CANADIAN SYLLABICS CARRIER HWA" #x15DB)
|
||||
("CANADIAN SYLLABICS CARRIER THU" #x15DC)
|
||||
("CANADIAN SYLLABICS CARRIER THO" #x15DD)
|
||||
("CANADIAN SYLLABICS CARRIER THE" #x15DE)
|
||||
("CANADIAN SYLLABICS CARRIER THEE" #x15DF)
|
||||
("CANADIAN SYLLABICS CARRIER THI" #x15E0)
|
||||
("CANADIAN SYLLABICS CARRIER THA" #x15E1)
|
||||
("CANADIAN SYLLABICS CARRIER TTU" #x15E2)
|
||||
("CANADIAN SYLLABICS CARRIER TTO" #x15E3)
|
||||
("CANADIAN SYLLABICS CARRIER TTE" #x15E4)
|
||||
("CANADIAN SYLLABICS CARRIER TTEE" #x15E5)
|
||||
("CANADIAN SYLLABICS CARRIER TTI" #x15E6)
|
||||
("CANADIAN SYLLABICS CARRIER TTA" #x15E7)
|
||||
("CANADIAN SYLLABICS CARRIER PU" #x15E8)
|
||||
("CANADIAN SYLLABICS CARRIER PO" #x15E9)
|
||||
("CANADIAN SYLLABICS CARRIER PE" #x15EA)
|
||||
("CANADIAN SYLLABICS CARRIER PEE" #x15EB)
|
||||
("CANADIAN SYLLABICS CARRIER PI" #x15EC)
|
||||
("CANADIAN SYLLABICS CARRIER PA" #x15ED)
|
||||
("CANADIAN SYLLABICS CARRIER P" #x15EE)
|
||||
("CANADIAN SYLLABICS CARRIER GU" #x15EF)
|
||||
("CANADIAN SYLLABICS CARRIER GO" #x15F0)
|
||||
("CANADIAN SYLLABICS CARRIER GE" #x15F1)
|
||||
("CANADIAN SYLLABICS CARRIER GEE" #x15F2)
|
||||
("CANADIAN SYLLABICS CARRIER GI" #x15F3)
|
||||
("CANADIAN SYLLABICS CARRIER GA" #x15F4)
|
||||
("CANADIAN SYLLABICS CARRIER KHU" #x15F5)
|
||||
("CANADIAN SYLLABICS CARRIER KHO" #x15F6)
|
||||
("CANADIAN SYLLABICS CARRIER KHE" #x15F7)
|
||||
("CANADIAN SYLLABICS CARRIER KHEE" #x15F8)
|
||||
("CANADIAN SYLLABICS CARRIER KHI" #x15F9)
|
||||
("CANADIAN SYLLABICS CARRIER KHA" #x15FA)
|
||||
("CANADIAN SYLLABICS CARRIER KKU" #x15FB)
|
||||
("CANADIAN SYLLABICS CARRIER KKO" #x15FC)
|
||||
("CANADIAN SYLLABICS CARRIER KKE" #x15FD)
|
||||
("CANADIAN SYLLABICS CARRIER KKEE" #x15FE)
|
||||
("CANADIAN SYLLABICS CARRIER KKI" #x15FF)
|
||||
("CANADIAN SYLLABICS CARRIER KKA" #x1600)
|
||||
("CANADIAN SYLLABICS CARRIER KK" #x1601)
|
||||
("CANADIAN SYLLABICS CARRIER NU" #x1602)
|
||||
("CANADIAN SYLLABICS CARRIER NO" #x1603)
|
||||
("CANADIAN SYLLABICS CARRIER NE" #x1604)
|
||||
("CANADIAN SYLLABICS CARRIER NEE" #x1605)
|
||||
("CANADIAN SYLLABICS CARRIER NI" #x1606)
|
||||
("CANADIAN SYLLABICS CARRIER NA" #x1607)
|
||||
("CANADIAN SYLLABICS CARRIER MU" #x1608)
|
||||
("CANADIAN SYLLABICS CARRIER MO" #x1609)
|
||||
("CANADIAN SYLLABICS CARRIER ME" #x160A)
|
||||
("CANADIAN SYLLABICS CARRIER MEE" #x160B)
|
||||
("CANADIAN SYLLABICS CARRIER MI" #x160C)
|
||||
("CANADIAN SYLLABICS CARRIER MA" #x160D)
|
||||
("CANADIAN SYLLABICS CARRIER YU" #x160E)
|
||||
("CANADIAN SYLLABICS CARRIER YO" #x160F)
|
||||
("CANADIAN SYLLABICS CARRIER YE" #x1610)
|
||||
("CANADIAN SYLLABICS CARRIER YEE" #x1611)
|
||||
("CANADIAN SYLLABICS CARRIER YI" #x1612)
|
||||
("CANADIAN SYLLABICS CARRIER YA" #x1613)
|
||||
("CANADIAN SYLLABICS CARRIER JU" #x1614)
|
||||
("CANADIAN SYLLABICS SAYISI JU" #x1615)
|
||||
("CANADIAN SYLLABICS CARRIER JO" #x1616)
|
||||
("CANADIAN SYLLABICS CARRIER JE" #x1617)
|
||||
("CANADIAN SYLLABICS CARRIER JEE" #x1618)
|
||||
("CANADIAN SYLLABICS CARRIER JI" #x1619)
|
||||
("CANADIAN SYLLABICS SAYISI JI" #x161A)
|
||||
("CANADIAN SYLLABICS CARRIER JA" #x161B)
|
||||
("CANADIAN SYLLABICS CARRIER JJU" #x161C)
|
||||
("CANADIAN SYLLABICS CARRIER JJO" #x161D)
|
||||
("CANADIAN SYLLABICS CARRIER JJE" #x161E)
|
||||
("CANADIAN SYLLABICS CARRIER JJEE" #x161F)
|
||||
("CANADIAN SYLLABICS CARRIER JJI" #x1620)
|
||||
("CANADIAN SYLLABICS CARRIER JJA" #x1621)
|
||||
("CANADIAN SYLLABICS CARRIER LU" #x1622)
|
||||
("CANADIAN SYLLABICS CARRIER LO" #x1623)
|
||||
("CANADIAN SYLLABICS CARRIER LE" #x1624)
|
||||
("CANADIAN SYLLABICS CARRIER LEE" #x1625)
|
||||
("CANADIAN SYLLABICS CARRIER LI" #x1626)
|
||||
("CANADIAN SYLLABICS CARRIER LA" #x1627)
|
||||
("CANADIAN SYLLABICS CARRIER DLU" #x1628)
|
||||
("CANADIAN SYLLABICS CARRIER DLO" #x1629)
|
||||
("CANADIAN SYLLABICS CARRIER DLE" #x162A)
|
||||
("CANADIAN SYLLABICS CARRIER DLEE" #x162B)
|
||||
("CANADIAN SYLLABICS CARRIER DLI" #x162C)
|
||||
("CANADIAN SYLLABICS CARRIER DLA" #x162D)
|
||||
("CANADIAN SYLLABICS CARRIER LHU" #x162E)
|
||||
("CANADIAN SYLLABICS CARRIER LHO" #x162F)
|
||||
("CANADIAN SYLLABICS CARRIER LHE" #x1630)
|
||||
("CANADIAN SYLLABICS CARRIER LHEE" #x1631)
|
||||
("CANADIAN SYLLABICS CARRIER LHI" #x1632)
|
||||
("CANADIAN SYLLABICS CARRIER LHA" #x1633)
|
||||
("CANADIAN SYLLABICS CARRIER TLHU" #x1634)
|
||||
("CANADIAN SYLLABICS CARRIER TLHO" #x1635)
|
||||
("CANADIAN SYLLABICS CARRIER TLHE" #x1636)
|
||||
("CANADIAN SYLLABICS CARRIER TLHEE" #x1637)
|
||||
("CANADIAN SYLLABICS CARRIER TLHI" #x1638)
|
||||
("CANADIAN SYLLABICS CARRIER TLHA" #x1639)
|
||||
("CANADIAN SYLLABICS CARRIER TLU" #x163A)
|
||||
("CANADIAN SYLLABICS CARRIER TLO" #x163B)
|
||||
("CANADIAN SYLLABICS CARRIER TLE" #x163C)
|
||||
("CANADIAN SYLLABICS CARRIER TLEE" #x163D)
|
||||
("CANADIAN SYLLABICS CARRIER TLI" #x163E)
|
||||
("CANADIAN SYLLABICS CARRIER TLA" #x163F)
|
||||
("CANADIAN SYLLABICS CARRIER ZU" #x1640)
|
||||
("CANADIAN SYLLABICS CARRIER ZO" #x1641)
|
||||
("CANADIAN SYLLABICS CARRIER ZE" #x1642)
|
||||
("CANADIAN SYLLABICS CARRIER ZEE" #x1643)
|
||||
("CANADIAN SYLLABICS CARRIER ZI" #x1644)
|
||||
("CANADIAN SYLLABICS CARRIER ZA" #x1645)
|
||||
("CANADIAN SYLLABICS CARRIER Z" #x1646)
|
||||
("CANADIAN SYLLABICS CARRIER INITIAL Z" #x1647)
|
||||
("CANADIAN SYLLABICS CARRIER DZU" #x1648)
|
||||
("CANADIAN SYLLABICS CARRIER DZO" #x1649)
|
||||
("CANADIAN SYLLABICS CARRIER DZE" #x164A)
|
||||
("CANADIAN SYLLABICS CARRIER DZEE" #x164B)
|
||||
("CANADIAN SYLLABICS CARRIER DZI" #x164C)
|
||||
("CANADIAN SYLLABICS CARRIER DZA" #x164D)
|
||||
("CANADIAN SYLLABICS CARRIER SU" #x164E)
|
||||
("CANADIAN SYLLABICS CARRIER SO" #x164F)
|
||||
("CANADIAN SYLLABICS CARRIER SE" #x1650)
|
||||
("CANADIAN SYLLABICS CARRIER SEE" #x1651)
|
||||
("CANADIAN SYLLABICS CARRIER SI" #x1652)
|
||||
("CANADIAN SYLLABICS CARRIER SA" #x1653)
|
||||
("CANADIAN SYLLABICS CARRIER SHU" #x1654)
|
||||
("CANADIAN SYLLABICS CARRIER SHO" #x1655)
|
||||
("CANADIAN SYLLABICS CARRIER SHE" #x1656)
|
||||
("CANADIAN SYLLABICS CARRIER SHEE" #x1657)
|
||||
("CANADIAN SYLLABICS CARRIER SHI" #x1658)
|
||||
("CANADIAN SYLLABICS CARRIER SHA" #x1659)
|
||||
("CANADIAN SYLLABICS CARRIER SH" #x165A)
|
||||
("CANADIAN SYLLABICS CARRIER TSU" #x165B)
|
||||
("CANADIAN SYLLABICS CARRIER TSO" #x165C)
|
||||
("CANADIAN SYLLABICS CARRIER TSE" #x165D)
|
||||
("CANADIAN SYLLABICS CARRIER TSEE" #x165E)
|
||||
("CANADIAN SYLLABICS CARRIER TSI" #x165F)
|
||||
("CANADIAN SYLLABICS CARRIER TSA" #x1660)
|
||||
("CANADIAN SYLLABICS CARRIER CHU" #x1661)
|
||||
("CANADIAN SYLLABICS CARRIER CHO" #x1662)
|
||||
("CANADIAN SYLLABICS CARRIER CHE" #x1663)
|
||||
("CANADIAN SYLLABICS CARRIER CHEE" #x1664)
|
||||
("CANADIAN SYLLABICS CARRIER CHI" #x1665)
|
||||
("CANADIAN SYLLABICS CARRIER CHA" #x1666)
|
||||
("CANADIAN SYLLABICS CARRIER TTSU" #x1667)
|
||||
("CANADIAN SYLLABICS CARRIER TTSO" #x1668)
|
||||
("CANADIAN SYLLABICS CARRIER TTSE" #x1669)
|
||||
("CANADIAN SYLLABICS CARRIER TTSEE" #x166A)
|
||||
("CANADIAN SYLLABICS CARRIER TTSI" #x166B)
|
||||
("CANADIAN SYLLABICS CARRIER TTSA" #x166C)
|
||||
("CANADIAN SYLLABICS CHI SIGN" #x166D)
|
||||
("CANADIAN SYLLABICS FULL STOP" #x166E)
|
||||
("CANADIAN SYLLABICS QAI" #x166F)
|
||||
("CANADIAN SYLLABICS NGAI" #x1670)
|
||||
("CANADIAN SYLLABICS NNGI" #x1671)
|
||||
("CANADIAN SYLLABICS NNGII" #x1672)
|
||||
("CANADIAN SYLLABICS NNGO" #x1673)
|
||||
("CANADIAN SYLLABICS NNGOO" #x1674)
|
||||
("CANADIAN SYLLABICS NNGA" #x1675)
|
||||
("CANADIAN SYLLABICS NNGAA" #x1676)
|
||||
))
|
||||
|
||||
;; arch-tag: 7b4079a4-dea1-44b9-9699-8826b5919ad7
|
33
etc/nxml/01680-0169F.el
Normal file
33
etc/nxml/01680-0169F.el
Normal file
|
@ -0,0 +1,33 @@
|
|||
(nxml-define-char-name-set 'ogham
|
||||
'(("OGHAM SPACE MARK" #x1680)
|
||||
("OGHAM LETTER BEITH" #x1681)
|
||||
("OGHAM LETTER LUIS" #x1682)
|
||||
("OGHAM LETTER FEARN" #x1683)
|
||||
("OGHAM LETTER SAIL" #x1684)
|
||||
("OGHAM LETTER NION" #x1685)
|
||||
("OGHAM LETTER UATH" #x1686)
|
||||
("OGHAM LETTER DAIR" #x1687)
|
||||
("OGHAM LETTER TINNE" #x1688)
|
||||
("OGHAM LETTER COLL" #x1689)
|
||||
("OGHAM LETTER CEIRT" #x168A)
|
||||
("OGHAM LETTER MUIN" #x168B)
|
||||
("OGHAM LETTER GORT" #x168C)
|
||||
("OGHAM LETTER NGEADAL" #x168D)
|
||||
("OGHAM LETTER STRAIF" #x168E)
|
||||
("OGHAM LETTER RUIS" #x168F)
|
||||
("OGHAM LETTER AILM" #x1690)
|
||||
("OGHAM LETTER ONN" #x1691)
|
||||
("OGHAM LETTER UR" #x1692)
|
||||
("OGHAM LETTER EADHADH" #x1693)
|
||||
("OGHAM LETTER IODHADH" #x1694)
|
||||
("OGHAM LETTER EABHADH" #x1695)
|
||||
("OGHAM LETTER OR" #x1696)
|
||||
("OGHAM LETTER UILLEANN" #x1697)
|
||||
("OGHAM LETTER IFIN" #x1698)
|
||||
("OGHAM LETTER EAMHANCHOLL" #x1699)
|
||||
("OGHAM LETTER PEITH" #x169A)
|
||||
("OGHAM FEATHER MARK" #x169B)
|
||||
("OGHAM REVERSED FEATHER MARK" #x169C)
|
||||
))
|
||||
|
||||
;; arch-tag: db8ea8fc-61b4-4f83-97f5-d2a952b9d8b6
|
85
etc/nxml/016A0-016FF.el
Normal file
85
etc/nxml/016A0-016FF.el
Normal file
|
@ -0,0 +1,85 @@
|
|||
(nxml-define-char-name-set 'runic
|
||||
'(("RUNIC LETTER FEHU FEOH FE F" #x16A0)
|
||||
("RUNIC LETTER V" #x16A1)
|
||||
("RUNIC LETTER URUZ UR U" #x16A2)
|
||||
("RUNIC LETTER YR" #x16A3)
|
||||
("RUNIC LETTER Y" #x16A4)
|
||||
("RUNIC LETTER W" #x16A5)
|
||||
("RUNIC LETTER THURISAZ THURS THORN" #x16A6)
|
||||
("RUNIC LETTER ETH" #x16A7)
|
||||
("RUNIC LETTER ANSUZ A" #x16A8)
|
||||
("RUNIC LETTER OS O" #x16A9)
|
||||
("RUNIC LETTER AC A" #x16AA)
|
||||
("RUNIC LETTER AESC" #x16AB)
|
||||
("RUNIC LETTER LONG-BRANCH-OSS O" #x16AC)
|
||||
("RUNIC LETTER SHORT-TWIG-OSS O" #x16AD)
|
||||
("RUNIC LETTER O" #x16AE)
|
||||
("RUNIC LETTER OE" #x16AF)
|
||||
("RUNIC LETTER ON" #x16B0)
|
||||
("RUNIC LETTER RAIDO RAD REID R" #x16B1)
|
||||
("RUNIC LETTER KAUNA" #x16B2)
|
||||
("RUNIC LETTER CEN" #x16B3)
|
||||
("RUNIC LETTER KAUN K" #x16B4)
|
||||
("RUNIC LETTER G" #x16B5)
|
||||
("RUNIC LETTER ENG" #x16B6)
|
||||
("RUNIC LETTER GEBO GYFU G" #x16B7)
|
||||
("RUNIC LETTER GAR" #x16B8)
|
||||
("RUNIC LETTER WUNJO WYNN W" #x16B9)
|
||||
("RUNIC LETTER HAGLAZ H" #x16BA)
|
||||
("RUNIC LETTER HAEGL H" #x16BB)
|
||||
("RUNIC LETTER LONG-BRANCH-HAGALL H" #x16BC)
|
||||
("RUNIC LETTER SHORT-TWIG-HAGALL H" #x16BD)
|
||||
("RUNIC LETTER NAUDIZ NYD NAUD N" #x16BE)
|
||||
("RUNIC LETTER SHORT-TWIG-NAUD N" #x16BF)
|
||||
("RUNIC LETTER DOTTED-N" #x16C0)
|
||||
("RUNIC LETTER ISAZ IS ISS I" #x16C1)
|
||||
("RUNIC LETTER E" #x16C2)
|
||||
("RUNIC LETTER JERAN J" #x16C3)
|
||||
("RUNIC LETTER GER" #x16C4)
|
||||
("RUNIC LETTER LONG-BRANCH-AR AE" #x16C5)
|
||||
("RUNIC LETTER SHORT-TWIG-AR A" #x16C6)
|
||||
("RUNIC LETTER IWAZ EOH" #x16C7)
|
||||
("RUNIC LETTER PERTHO PEORTH P" #x16C8)
|
||||
("RUNIC LETTER ALGIZ EOLHX" #x16C9)
|
||||
("RUNIC LETTER SOWILO S" #x16CA)
|
||||
("RUNIC LETTER SIGEL LONG-BRANCH-SOL S" #x16CB)
|
||||
("RUNIC LETTER SHORT-TWIG-SOL S" #x16CC)
|
||||
("RUNIC LETTER C" #x16CD)
|
||||
("RUNIC LETTER Z" #x16CE)
|
||||
("RUNIC LETTER TIWAZ TIR TYR T" #x16CF)
|
||||
("RUNIC LETTER SHORT-TWIG-TYR T" #x16D0)
|
||||
("RUNIC LETTER D" #x16D1)
|
||||
("RUNIC LETTER BERKANAN BEORC BJARKAN B" #x16D2)
|
||||
("RUNIC LETTER SHORT-TWIG-BJARKAN B" #x16D3)
|
||||
("RUNIC LETTER DOTTED-P" #x16D4)
|
||||
("RUNIC LETTER OPEN-P" #x16D5)
|
||||
("RUNIC LETTER EHWAZ EH E" #x16D6)
|
||||
("RUNIC LETTER MANNAZ MAN M" #x16D7)
|
||||
("RUNIC LETTER LONG-BRANCH-MADR M" #x16D8)
|
||||
("RUNIC LETTER SHORT-TWIG-MADR M" #x16D9)
|
||||
("RUNIC LETTER LAUKAZ LAGU LOGR L" #x16DA)
|
||||
("RUNIC LETTER DOTTED-L" #x16DB)
|
||||
("RUNIC LETTER INGWAZ" #x16DC)
|
||||
("RUNIC LETTER ING" #x16DD)
|
||||
("RUNIC LETTER DAGAZ DAEG D" #x16DE)
|
||||
("RUNIC LETTER OTHALAN ETHEL O" #x16DF)
|
||||
("RUNIC LETTER EAR" #x16E0)
|
||||
("RUNIC LETTER IOR" #x16E1)
|
||||
("RUNIC LETTER CWEORTH" #x16E2)
|
||||
("RUNIC LETTER CALC" #x16E3)
|
||||
("RUNIC LETTER CEALC" #x16E4)
|
||||
("RUNIC LETTER STAN" #x16E5)
|
||||
("RUNIC LETTER LONG-BRANCH-YR" #x16E6)
|
||||
("RUNIC LETTER SHORT-TWIG-YR" #x16E7)
|
||||
("RUNIC LETTER ICELANDIC-YR" #x16E8)
|
||||
("RUNIC LETTER Q" #x16E9)
|
||||
("RUNIC LETTER X" #x16EA)
|
||||
("RUNIC SINGLE PUNCTUATION" #x16EB)
|
||||
("RUNIC MULTIPLE PUNCTUATION" #x16EC)
|
||||
("RUNIC CROSS PUNCTUATION" #x16ED)
|
||||
("RUNIC ARLAUG SYMBOL" #x16EE)
|
||||
("RUNIC TVIMADUR SYMBOL" #x16EF)
|
||||
("RUNIC BELGTHOR SYMBOL" #x16F0)
|
||||
))
|
||||
|
||||
;; arch-tag: e21b5eb5-adb4-44fa-a453-995bf3c7fdc5
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Reference in a new issue