├── info ├── .cvsignore └── .gitignore ├── lisp ├── obsolete │ ├── .cvsignore │ ├── iso-insert.el │ └── sc.el ├── gnus │ ├── .cvsignore │ ├── nnir.el │ ├── utf7.el │ ├── ChangeLog.1 │ ├── deuglify.el │ ├── gnus-sum.el │ ├── message.el │ ├── mml1991.el │ ├── gnus-delay.el │ ├── gnus-spec.el │ ├── html2text.el │ └── nnultimate.el ├── mail │ ├── .cvsignore │ └── footnote.el ├── net │ ├── .cvsignore │ ├── eudc.el │ ├── eudc-bob.el │ ├── eudc-vars.el │ ├── eudcb-ph.el │ ├── eudc-export.el │ ├── eudc-hotlist.el │ ├── eudcb-bbdb.el │ ├── eudcb-ldap.el │ └── tramp-cache.el ├── play │ ├── .cvsignore │ ├── bubbles.el │ └── handwrite.el ├── term │ ├── .cvsignore │ ├── apollo.el │ ├── vt102.el │ ├── vt125.el │ ├── cygwin.el │ ├── bobcat.el │ ├── vt300.el │ ├── vt320.el │ ├── vt400.el │ ├── vt420.el │ ├── vt200.el │ ├── vt201.el │ ├── vt220.el │ └── vt240.el ├── emacs-lisp │ ├── .cvsignore │ └── .gitignore ├── emulation │ └── .cvsignore ├── language │ ├── .cvsignore │ ├── ethiopic.el │ ├── romanian.el │ ├── thai-word.el │ └── ethio-util.el ├── progmodes │ ├── .cvsignore │ ├── python.el │ ├── cc-langs.el │ ├── hideshow.el │ └── cc-engine.el ├── textmodes │ ├── .cvsignore │ ├── po.el │ ├── tildify.el │ └── conf-mode.el ├── cedet │ ├── ede │ │ └── .cvsignore │ ├── semantic │ │ ├── .cvsignore │ │ └── wisent │ │ │ └── wisent.el │ └── srecode │ │ └── .cvsignore ├── international │ ├── .cvsignore │ ├── iso-cvt.el │ └── iso-transl.el ├── nxml │ └── .cvsignore ├── calc │ ├── .cvsignore │ ├── calc-units.el │ └── .arch-inventory ├── erc │ └── .cvsignore ├── man.el ├── mh-e │ ├── .cvsignore │ ├── ChangeLog.1 │ └── .arch-inventory ├── wdired.el ├── battery.el ├── filesets.el ├── ruler-mode.el ├── url │ └── .cvsignore ├── calendar │ ├── .cvsignore │ ├── cal-french.el │ └── .arch-inventory ├── eshell │ ├── .gitignore │ ├── .arch-inventory │ └── .cvsignore ├── org │ └── org-freemind.el ├── .gitignore ├── .arch-inventory ├── .cvsignore └── README ├── src ├── stamp-h.in ├── msdos.c ├── m │ ├── ibmrs6000.inp │ ├── sh3.h │ ├── xtensa.h │ └── README ├── bitmaps │ ├── gray.xbm │ ├── gray1.xbm │ ├── gray3.xbm │ ├── stipple.xbm │ ├── dimple1.xbm │ ├── dimple3.xbm │ ├── cntrpmsk.xbm │ ├── crosswv.xbm │ ├── leftpmsk.xbm │ ├── rtpmsk.xbm │ ├── cntrptr.xbm │ ├── leftptr.xbm │ └── rtptr.xbm ├── .gitignore ├── s │ ├── unixware.h │ ├── sol2-6.h │ ├── README │ ├── gnu-kfreebsd.h │ └── hpux11.h ├── .dbxinit ├── point.h ├── .cvsignore ├── .arch-inventory └── pre-crt0.c ├── leim ├── ja-dic │ └── .cvsignore ├── .cvsignore ├── CXTERM-DIC │ ├── ETZY.tit │ ├── QJ.tit │ ├── SW.tit │ ├── ZOZY.tit │ ├── ECDICT.tit │ ├── PY-b5.tit │ ├── Punct.tit │ ├── QJ-b5.tit │ ├── TONEPY.tit │ ├── 4Corner.tit │ ├── ARRAY30.tit │ ├── CCDOSPY.tit │ └── Punct-b5.tit ├── MISC-DIC │ ├── CTLau.html │ ├── pinyin.map │ ├── ziranma.cin │ ├── CTLau-b5.html │ └── cangjie-table.b5 ├── SKK-DIC │ ├── SKK-JISYO.L │ └── README ├── quail │ ├── croatian.el │ ├── .arch-inventory │ ├── .cvsignore │ └── .gitignore ├── .gitignore └── .arch-inventory ├── lwlib ├── .cvsignore └── README ├── oldXMenu ├── .cvsignore └── EvHand.c ├── nextstep ├── .cvsignore ├── Cocoa │ └── Emacs.base │ │ └── Contents │ │ ├── PkgInfo │ │ └── Resources │ │ ├── Emacs.icns │ │ ├── document.icns │ │ ├── Credits.html │ │ └── English.lproj │ │ └── InfoPlist.strings └── GNUstep │ └── Emacs.base │ └── Resources │ ├── emacs.tiff │ ├── README │ └── Emacs.desktop ├── admin ├── charsets │ ├── .cvsignore │ ├── mapfiles │ │ ├── PTCP154.gz │ │ ├── Uni2JIS.gz │ │ ├── CP720.map.gz │ │ ├── CP858.map.gz │ │ ├── CP932.TXT.gz │ │ ├── JISX213A.map.gz │ │ ├── MULE-ipa.map.gz │ │ ├── stdenc.txt.gz │ │ ├── symbol.txt.gz │ │ ├── cns2ucsdkw.txt.gz │ │ ├── MULE-ethiopic.map.gz │ │ ├── MULE-is13194.map.gz │ │ ├── MULE-lviscii.map.gz │ │ ├── MULE-sisheng.map.gz │ │ ├── MULE-tibetan.map.gz │ │ ├── MULE-uviscii.map.gz │ │ └── bulgarian-mik.txt.gz │ ├── .arch-inventory │ └── kuten.awk ├── notes │ ├── unicode │ ├── copyright │ ├── trailing-whitespace │ ├── cvslogs │ ├── cpp │ └── changelogs ├── make-tarball.txt └── unidata │ ├── .cvsignore │ ├── .gitignore │ ├── .arch-inventory │ └── README ├── etc ├── nxml │ ├── README │ ├── 03400-04DBF.el │ ├── 0FE20-0FE2F.el │ ├── test-valid.xml │ ├── test-invalid.xml │ ├── 0FFF0-0FFFF.el │ ├── 02440-0245F.el │ └── 020A0-020CF.el ├── .cvsignore ├── e │ ├── eterm-color │ └── README ├── images │ ├── copy.pbm │ ├── cut.pbm │ ├── exit.pbm │ ├── gnus.pbm │ ├── help.pbm │ ├── home.pbm │ ├── info.pbm │ ├── new.pbm │ ├── open.pbm │ ├── save.pbm │ ├── show.pbm │ ├── undo.pbm │ ├── attach.pbm │ ├── cancel.pbm │ ├── close.pbm │ ├── delete.pbm │ ├── gud │ │ ├── go.pbm │ │ ├── pp.pbm │ │ ├── up.pbm │ │ ├── break.pbm │ │ ├── cont.pbm │ │ ├── down.pbm │ │ ├── next.pbm │ │ ├── nexti.pbm │ │ ├── print.pbm │ │ ├── pstar.pbm │ │ ├── run.pbm │ │ ├── step.pbm │ │ ├── stepi.pbm │ │ ├── stop.pbm │ │ ├── until.pbm │ │ ├── watch.pbm │ │ ├── finish.pbm │ │ └── remove.pbm │ ├── index.pbm │ ├── letter.pbm │ ├── paste.pbm │ ├── print.pbm │ ├── saveas.pbm │ ├── search.pbm │ ├── spell.pbm │ ├── splash.pbm │ ├── splash.png │ ├── contact.pbm │ ├── data-save.pbm │ ├── diropen.pbm │ ├── fwd-arrow.pbm │ ├── gnus │ │ ├── fuwo.pbm │ │ ├── gnus.png │ │ ├── post.pbm │ │ ├── gnntg.pbm │ │ ├── reply.pbm │ │ ├── rot13.pbm │ │ ├── catchup.pbm │ │ ├── cu-exit.pbm │ │ ├── exit-gnus.pbm │ │ ├── exit-summ.pbm │ │ ├── followup.pbm │ │ ├── get-news.pbm │ │ ├── next-ur.pbm │ │ ├── prev-ur.pbm │ │ ├── reply-wo.pbm │ │ ├── save-aif.pbm │ │ ├── save-art.pbm │ │ ├── subscribe.pbm │ │ ├── uu-decode.pbm │ │ ├── uu-post.pbm │ │ ├── kill-group.pbm │ │ ├── mail-reply.pbm │ │ ├── unsubscribe.pbm │ │ ├── describe-group.pbm │ │ ├── gnus-pointer.xbm │ │ ├── gnus-pointer.xpm │ │ └── preview.xbm │ ├── jump-to.pbm │ ├── mail │ │ ├── README │ │ ├── move.pbm │ │ ├── send.pbm │ │ ├── inbox.pbm │ │ ├── repack.pbm │ │ ├── reply.pbm │ │ ├── compose.pbm │ │ ├── reply-all.pbm │ │ ├── reply-to.pbm │ │ ├── reply-from.pbm │ │ └── flag-for-followup.pbm │ ├── next-node.pbm │ ├── next-page.pbm │ ├── prev-node.pbm │ ├── refresh.pbm │ ├── up-arrow.pbm │ ├── up-node.pbm │ ├── zoom-out.pbm │ ├── back-arrow.pbm │ ├── left-arrow.pbm │ ├── preferences.pbm │ ├── right-arrow.pbm │ ├── smilies │ │ ├── sad.pbm │ │ ├── wry.pbm │ │ ├── blink.pbm │ │ ├── frown.pbm │ │ ├── smile.pbm │ │ ├── medium │ │ │ ├── README │ │ │ ├── cry.xpm │ │ │ ├── sad.xpm │ │ │ ├── wry.xpm │ │ │ ├── dead.xpm │ │ │ ├── frown.xpm │ │ │ ├── forced.xpm │ │ │ ├── braindamaged.xpm │ │ │ ├── indifferent.xpm │ │ │ ├── blink.xpm │ │ │ ├── evil.xpm │ │ │ ├── smile.xpm │ │ │ ├── grin.xpm │ │ │ └── reverse-smile.xpm │ │ ├── grayscale │ │ │ ├── README │ │ │ ├── dead.xpm │ │ │ ├── sad.xpm │ │ │ ├── frown.xpm │ │ │ ├── smile.xpm │ │ │ ├── cry.xpm │ │ │ ├── reverse-smile.xpm │ │ │ ├── wry.xpm │ │ │ ├── evil.xpm │ │ │ ├── forced.xpm │ │ │ ├── braindamaged.xpm │ │ │ ├── indifferent.xpm │ │ │ ├── blink.xpm │ │ │ └── grin.xpm │ │ ├── blink.xpm │ │ ├── cry.xpm │ │ ├── dead.xpm │ │ ├── frown.xpm │ │ ├── sad.xpm │ │ ├── smile.xpm │ │ ├── wry.xpm │ │ ├── braindamaged.xpm │ │ ├── evil.xpm │ │ ├── forced.xpm │ │ ├── indifferent.xpm │ │ ├── grin.xpm │ │ └── README │ ├── bookmark_add.pbm │ ├── search-replace.pbm │ ├── tree-widget │ │ ├── default │ │ │ ├── leaf.png │ │ │ ├── open.png │ │ │ ├── close.png │ │ │ ├── empty.png │ │ │ ├── guide.png │ │ │ ├── handle.png │ │ │ ├── end-guide.png │ │ │ ├── no-guide.png │ │ │ ├── no-handle.png │ │ │ ├── no-guide.xpm │ │ │ ├── guide.xpm │ │ │ ├── end-guide.xpm │ │ │ ├── no-handle.xpm │ │ │ ├── handle.xpm │ │ │ └── README │ │ └── folder │ │ │ ├── close.png │ │ │ ├── empty.png │ │ │ ├── guide.png │ │ │ ├── leaf.png │ │ │ ├── open.png │ │ │ ├── handle.png │ │ │ ├── end-guide.png │ │ │ ├── no-guide.png │ │ │ ├── no-handle.png │ │ │ ├── no-guide.xpm │ │ │ ├── guide.xpm │ │ │ ├── end-guide.xpm │ │ │ ├── no-handle.xpm │ │ │ ├── README │ │ │ └── handle.xpm │ ├── icons │ │ └── hicolor │ │ │ ├── 16x16 │ │ │ └── apps │ │ │ │ ├── emacs.png │ │ │ │ └── emacs22.png │ │ │ ├── 24x24 │ │ │ └── apps │ │ │ │ ├── emacs.png │ │ │ │ └── emacs22.png │ │ │ ├── 32x32 │ │ │ └── apps │ │ │ │ ├── emacs.png │ │ │ │ └── emacs22.png │ │ │ ├── 48x48 │ │ │ └── apps │ │ │ │ ├── emacs.png │ │ │ │ └── emacs22.png │ │ │ └── 128x128 │ │ │ └── apps │ │ │ └── emacs.png │ ├── custom │ │ ├── down.xpm │ │ ├── right.xpm │ │ ├── down-pushed.xpm │ │ ├── right-pushed.xpm │ │ └── README │ ├── mpc │ │ └── README │ ├── letter.xpm │ ├── separator.xpm │ ├── ezimage │ │ ├── label.xpm │ │ ├── info.xpm │ │ ├── bits.xpm │ │ ├── checkmark.xpm │ │ ├── bitsbang.xpm │ │ ├── doc.xpm │ │ ├── doc-minus.xpm │ │ ├── doc-plus.xpm │ │ ├── key.xpm │ │ ├── lock.xpm │ │ ├── unlock.xpm │ │ ├── box.xpm │ │ ├── mail.xpm │ │ ├── tag-v.xpm │ │ ├── tag.xpm │ │ ├── tag-gt.xpm │ │ ├── tag-minus.xpm │ │ ├── tag-plus.xpm │ │ ├── box-minus.xpm │ │ ├── box-plus.xpm │ │ ├── tag-type.xpm │ │ ├── dir.xpm │ │ ├── page.xpm │ │ ├── dir-minus.xpm │ │ ├── dir-plus.xpm │ │ ├── page-minus.xpm │ │ ├── page-plus.xpm │ │ └── README │ ├── low-color │ │ └── README │ └── sort-row-ascending.xpm ├── refcards │ ├── orgcard.pdf │ ├── refcard.pdf │ ├── calccard.pdf │ ├── dired-ref.pdf │ ├── gnus-logo.pdf │ ├── cs-dired-ref.pdf │ ├── cs-dired-ref.tex │ ├── cs-refcard.pdf │ ├── cs-refcard.tex │ ├── cs-survival.tex │ ├── de-refcard.pdf │ ├── fr-dired-ref.pdf │ ├── fr-dired-ref.tex │ ├── fr-refcard.pdf │ ├── fr-refcard.tex │ ├── fr-survival.tex │ ├── gnus-booklet.pdf │ ├── gnus-refcard.pdf │ ├── pl-refcard.pdf │ ├── ru-refcard.pdf │ ├── ru-refcard.tex │ ├── sk-dired-ref.pdf │ ├── sk-dired-ref.tex │ ├── sk-refcard.pdf │ ├── sk-refcard.tex │ ├── sk-survival.tex │ └── pt-br-refcard.pdf ├── .gitignore ├── tutorials │ ├── TUTORIAL.bg │ ├── TUTORIAL.cn │ ├── TUTORIAL.cs │ ├── TUTORIAL.de │ ├── TUTORIAL.eo │ ├── TUTORIAL.es │ ├── TUTORIAL.fr │ ├── TUTORIAL.it │ ├── TUTORIAL.nl │ ├── TUTORIAL.pl │ ├── TUTORIAL.ro │ ├── TUTORIAL.ru │ ├── TUTORIAL.sk │ ├── TUTORIAL.sl │ ├── TUTORIAL.sv │ ├── TUTORIAL.zh │ └── TUTORIAL.pt_BR ├── charsets │ ├── IBM891.map │ ├── IBM903.map │ ├── KSC5636.map │ ├── TIS-620.map │ ├── 8859-11.map │ ├── IBM904.map │ ├── JISX0201.map │ ├── 8859-6.map │ ├── 8859-5.map │ ├── 8859-8.map │ ├── IBM874.map │ ├── 8859-9.map │ ├── JISX213A.map │ ├── 8859-15.map │ ├── 8859-7.map │ ├── IBM1004.map │ ├── CP1252.map │ ├── KA-ACADEMY.map │ ├── CP1253.map │ ├── CP1255.map │ ├── CP1254.map │ └── KA-PS.map ├── schema │ ├── xhtml-inlstyle.rnc │ ├── xhtml-ssismap.rnc │ ├── xhtml-base.rnc │ ├── xhtml-tgt.rnc │ ├── xhtml-bdo.rnc │ ├── xhtml-param.rnc │ ├── xhtml-meta.rnc │ ├── xhtml-xstyle.rnc │ ├── xhtml-nameident.rnc │ ├── xhtml-image.rnc │ ├── xhtml-edit.rnc │ ├── dbstart.rnc │ ├── xhtml-link.rnc │ ├── xhtml-attribs.rnc │ ├── xhtml-iframe.rnc │ ├── xhtml-applet.rnc │ ├── xhtml-lst.rnc │ ├── xhtml-script.rnc │ ├── xhtml-hypertext.rnc │ ├── xhtml-struct.rnc │ └── xhtml-ruby.rnc ├── FTP ├── celibacy.1 ├── emacs.py ├── SERVICE ├── .arch-inventory ├── emacs.desktop ├── yow.lines ├── forms-d2.dat ├── ORDERS └── README ├── lib-src ├── etags.c ├── testfile ├── .gitignore ├── README ├── .cvsignore └── .arch-inventory ├── msdos ├── emacs.ico ├── emacs.pif └── sed1x.inp ├── doc ├── misc │ ├── gnus.texi │ ├── mh-e.texi │ ├── ses.texi │ └── .cvsignore ├── lispintro │ ├── cons-1.pdf │ ├── cons-2.pdf │ ├── cons-3.pdf │ ├── cons-4.pdf │ ├── cons-5.pdf │ ├── cons-2a.pdf │ ├── drawers.pdf │ ├── lambda-1.pdf │ ├── lambda-2.pdf │ ├── lambda-3.pdf │ └── .cvsignore ├── man │ └── ctags.1 ├── lispref │ ├── .arch-inventory │ ├── .cvsignore │ └── book-spine.texinfo └── emacs │ └── .cvsignore ├── nt ├── icons │ ├── emacs.ico │ ├── gnu7.ico │ ├── gnu8.ico │ ├── gnu9.ico │ ├── hand.cur │ ├── emacs22.ico │ ├── gnu2a32.ico │ ├── gnu2a32t.ico │ ├── gnu2b48.ico │ ├── gnu2b48t.ico │ ├── gnu3b32.ico │ ├── gnu3b32t.ico │ ├── gnu4g48.ico │ ├── gnu4g48t.ico │ ├── gnu5w32.ico │ ├── gnu5w32t.ico │ ├── gnu6w48.ico │ └── gnu6w48t.ico ├── .cvsignore ├── .arch-inventory ├── .gitignore ├── subdirs.el ├── inc │ ├── netdb.h │ ├── arpa │ │ └── inet.h │ ├── netinet │ │ └── in.h │ ├── unistd.h │ ├── sys │ │ ├── dir.h │ │ ├── param.h │ │ ├── file.h │ │ ├── ioctl.h │ │ └── time.h │ └── pwd.h └── emacs.manifest ├── test ├── cedet │ └── tests │ │ ├── test.cpp │ │ ├── scopetest.java │ │ └── testnsp.cpp ├── icalendar-testsuite.el └── README ├── .gitignore ├── move-if-change ├── .arch-inventory ├── .cvsignore ├── vpath.sed ├── autogen.sh └── .dir-locals.el /info/.cvsignore: -------------------------------------------------------------------------------- 1 | * 2 | -------------------------------------------------------------------------------- /lisp/obsolete/.cvsignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/stamp-h.in: -------------------------------------------------------------------------------- 1 | timestamp 2 | -------------------------------------------------------------------------------- /leim/ja-dic/.cvsignore: -------------------------------------------------------------------------------- 1 | *.elc 2 | -------------------------------------------------------------------------------- /lisp/gnus/.cvsignore: -------------------------------------------------------------------------------- 1 | *.elc 2 | -------------------------------------------------------------------------------- /lisp/mail/.cvsignore: -------------------------------------------------------------------------------- 1 | *.elc 2 | -------------------------------------------------------------------------------- /lisp/net/.cvsignore: -------------------------------------------------------------------------------- 1 | *.elc 2 | -------------------------------------------------------------------------------- /lisp/play/.cvsignore: -------------------------------------------------------------------------------- 1 | *.elc 2 | -------------------------------------------------------------------------------- /lisp/term/.cvsignore: -------------------------------------------------------------------------------- 1 | *.elc 2 | -------------------------------------------------------------------------------- /lwlib/.cvsignore: -------------------------------------------------------------------------------- 1 | Makefile 2 | -------------------------------------------------------------------------------- /oldXMenu/.cvsignore: -------------------------------------------------------------------------------- 1 | Makefile 2 | -------------------------------------------------------------------------------- /lisp/emacs-lisp/.cvsignore: -------------------------------------------------------------------------------- 1 | *.elc 2 | -------------------------------------------------------------------------------- /lisp/emulation/.cvsignore: -------------------------------------------------------------------------------- 1 | *.elc 2 | -------------------------------------------------------------------------------- /lisp/language/.cvsignore: -------------------------------------------------------------------------------- 1 | *.elc 2 | -------------------------------------------------------------------------------- /lisp/progmodes/.cvsignore: -------------------------------------------------------------------------------- 1 | *.elc 2 | -------------------------------------------------------------------------------- /lisp/textmodes/.cvsignore: -------------------------------------------------------------------------------- 1 | *.elc 2 | -------------------------------------------------------------------------------- /lisp/cedet/ede/.cvsignore: -------------------------------------------------------------------------------- 1 | loaddefs.el 2 | -------------------------------------------------------------------------------- /lisp/international/.cvsignore: -------------------------------------------------------------------------------- 1 | *.elc 2 | -------------------------------------------------------------------------------- /nextstep/.cvsignore: -------------------------------------------------------------------------------- 1 | Emacs.app 2 | build 3 | -------------------------------------------------------------------------------- /admin/charsets/.cvsignore: -------------------------------------------------------------------------------- 1 | *.map 2 | *.el 3 | -------------------------------------------------------------------------------- /lisp/cedet/semantic/.cvsignore: -------------------------------------------------------------------------------- 1 | loaddefs.el 2 | -------------------------------------------------------------------------------- /lisp/cedet/srecode/.cvsignore: -------------------------------------------------------------------------------- 1 | loaddefs.el 2 | -------------------------------------------------------------------------------- /lisp/nxml/.cvsignore: -------------------------------------------------------------------------------- 1 | *.elc 2 | subdirs.el 3 | -------------------------------------------------------------------------------- /lisp/calc/.cvsignore: -------------------------------------------------------------------------------- 1 | *.elc 2 | calc-loaddefs.el 3 | -------------------------------------------------------------------------------- /nextstep/Cocoa/Emacs.base/Contents/PkgInfo: -------------------------------------------------------------------------------- 1 | APPLEMAx -------------------------------------------------------------------------------- /lisp/erc/.cvsignore: -------------------------------------------------------------------------------- 1 | {arch} 2 | .arch-ids 3 | *.elc 4 | -------------------------------------------------------------------------------- /etc/nxml/README: -------------------------------------------------------------------------------- 1 | These data files are used by the nxml package. 2 | -------------------------------------------------------------------------------- /lisp/man.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/lisp/man.el -------------------------------------------------------------------------------- /src/msdos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/src/msdos.c -------------------------------------------------------------------------------- /lisp/mh-e/.cvsignore: -------------------------------------------------------------------------------- 1 | mh-autoloads.el 2 | mh-cus-load.el 3 | mh-loaddefs.el 4 | -------------------------------------------------------------------------------- /lisp/wdired.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/lisp/wdired.el -------------------------------------------------------------------------------- /etc/.cvsignore: -------------------------------------------------------------------------------- 1 | fns-* 2 | icons 3 | *.ps 4 | *.log 5 | *.dvi 6 | DOC DOC-* 7 | *.pyc -------------------------------------------------------------------------------- /info/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | 3 | # arch-tag: 4cf702c2-f50e-49bd-a3ff-4fd962c5975a 4 | -------------------------------------------------------------------------------- /lib-src/etags.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/lib-src/etags.c -------------------------------------------------------------------------------- /lib-src/testfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/lib-src/testfile -------------------------------------------------------------------------------- /lisp/battery.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/lisp/battery.el -------------------------------------------------------------------------------- /lisp/filesets.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/lisp/filesets.el -------------------------------------------------------------------------------- /lisp/net/eudc.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/lisp/net/eudc.el -------------------------------------------------------------------------------- /msdos/emacs.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/msdos/emacs.ico -------------------------------------------------------------------------------- /msdos/emacs.pif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/msdos/emacs.pif -------------------------------------------------------------------------------- /admin/notes/unicode: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/admin/notes/unicode -------------------------------------------------------------------------------- /doc/misc/gnus.texi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/doc/misc/gnus.texi -------------------------------------------------------------------------------- /doc/misc/mh-e.texi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/doc/misc/mh-e.texi -------------------------------------------------------------------------------- /doc/misc/ses.texi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/doc/misc/ses.texi -------------------------------------------------------------------------------- /etc/e/eterm-color: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/etc/e/eterm-color -------------------------------------------------------------------------------- /etc/images/copy.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/etc/images/copy.pbm -------------------------------------------------------------------------------- /etc/images/cut.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/etc/images/cut.pbm -------------------------------------------------------------------------------- /etc/images/exit.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/etc/images/exit.pbm -------------------------------------------------------------------------------- /etc/images/gnus.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/etc/images/gnus.pbm -------------------------------------------------------------------------------- /etc/images/help.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/etc/images/help.pbm -------------------------------------------------------------------------------- /etc/images/home.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/etc/images/home.pbm -------------------------------------------------------------------------------- /etc/images/info.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/etc/images/info.pbm -------------------------------------------------------------------------------- /etc/images/new.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/etc/images/new.pbm -------------------------------------------------------------------------------- /etc/images/open.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/etc/images/open.pbm -------------------------------------------------------------------------------- /etc/images/save.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/etc/images/save.pbm -------------------------------------------------------------------------------- /etc/images/show.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/etc/images/show.pbm -------------------------------------------------------------------------------- /etc/images/undo.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/etc/images/undo.pbm -------------------------------------------------------------------------------- /lisp/gnus/nnir.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/lisp/gnus/nnir.el -------------------------------------------------------------------------------- /lisp/gnus/utf7.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/lisp/gnus/utf7.el -------------------------------------------------------------------------------- /lisp/ruler-mode.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/lisp/ruler-mode.el -------------------------------------------------------------------------------- /nt/icons/emacs.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/nt/icons/emacs.ico -------------------------------------------------------------------------------- /nt/icons/gnu7.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/nt/icons/gnu7.ico -------------------------------------------------------------------------------- /nt/icons/gnu8.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/nt/icons/gnu8.ico -------------------------------------------------------------------------------- /nt/icons/gnu9.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/nt/icons/gnu9.ico -------------------------------------------------------------------------------- /nt/icons/hand.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/nt/icons/hand.cur -------------------------------------------------------------------------------- /admin/notes/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/admin/notes/copyright -------------------------------------------------------------------------------- /etc/images/attach.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/etc/images/attach.pbm -------------------------------------------------------------------------------- /etc/images/cancel.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/etc/images/cancel.pbm -------------------------------------------------------------------------------- /etc/images/close.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/etc/images/close.pbm -------------------------------------------------------------------------------- /etc/images/delete.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/etc/images/delete.pbm -------------------------------------------------------------------------------- /etc/images/gud/go.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/etc/images/gud/go.pbm -------------------------------------------------------------------------------- /etc/images/gud/pp.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/etc/images/gud/pp.pbm -------------------------------------------------------------------------------- /etc/images/gud/up.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/etc/images/gud/up.pbm -------------------------------------------------------------------------------- /etc/images/index.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/etc/images/index.pbm -------------------------------------------------------------------------------- /etc/images/letter.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/etc/images/letter.pbm -------------------------------------------------------------------------------- /etc/images/paste.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/etc/images/paste.pbm -------------------------------------------------------------------------------- /etc/images/print.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/etc/images/print.pbm -------------------------------------------------------------------------------- /etc/images/saveas.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/etc/images/saveas.pbm -------------------------------------------------------------------------------- /etc/images/search.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/etc/images/search.pbm -------------------------------------------------------------------------------- /etc/images/spell.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/etc/images/spell.pbm -------------------------------------------------------------------------------- /etc/images/splash.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/etc/images/splash.pbm -------------------------------------------------------------------------------- /etc/images/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/etc/images/splash.png -------------------------------------------------------------------------------- /leim/.cvsignore: -------------------------------------------------------------------------------- 1 | Makefile 2 | makefile 3 | changed.misc 4 | changed.tit 5 | leim-list.el 6 | -------------------------------------------------------------------------------- /lisp/gnus/ChangeLog.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/lisp/gnus/ChangeLog.1 -------------------------------------------------------------------------------- /lisp/gnus/deuglify.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/lisp/gnus/deuglify.el -------------------------------------------------------------------------------- /lisp/gnus/gnus-sum.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/lisp/gnus/gnus-sum.el -------------------------------------------------------------------------------- /lisp/gnus/message.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/lisp/gnus/message.el -------------------------------------------------------------------------------- /lisp/gnus/mml1991.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/lisp/gnus/mml1991.el -------------------------------------------------------------------------------- /lisp/mail/footnote.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/lisp/mail/footnote.el -------------------------------------------------------------------------------- /lisp/mh-e/ChangeLog.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/lisp/mh-e/ChangeLog.1 -------------------------------------------------------------------------------- /lisp/net/eudc-bob.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/lisp/net/eudc-bob.el -------------------------------------------------------------------------------- /lisp/net/eudc-vars.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/lisp/net/eudc-vars.el -------------------------------------------------------------------------------- /lisp/net/eudcb-ph.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/lisp/net/eudcb-ph.el -------------------------------------------------------------------------------- /lisp/play/bubbles.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/lisp/play/bubbles.el -------------------------------------------------------------------------------- /lisp/textmodes/po.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/lisp/textmodes/po.el -------------------------------------------------------------------------------- /lisp/url/.cvsignore: -------------------------------------------------------------------------------- 1 | Makefile 2 | auto-autoloads.el 3 | custom-load.el 4 | url-auto.el 5 | -------------------------------------------------------------------------------- /nt/.cvsignore: -------------------------------------------------------------------------------- 1 | *-spd 2 | *.pdb 3 | config.log 4 | makefile 5 | obj 6 | oo 7 | stamp_BLD 8 | -------------------------------------------------------------------------------- /nt/icons/emacs22.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/nt/icons/emacs22.ico -------------------------------------------------------------------------------- /nt/icons/gnu2a32.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/nt/icons/gnu2a32.ico -------------------------------------------------------------------------------- /nt/icons/gnu2a32t.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/nt/icons/gnu2a32t.ico -------------------------------------------------------------------------------- /nt/icons/gnu2b48.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/nt/icons/gnu2b48.ico -------------------------------------------------------------------------------- /nt/icons/gnu2b48t.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/nt/icons/gnu2b48t.ico -------------------------------------------------------------------------------- /nt/icons/gnu3b32.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/nt/icons/gnu3b32.ico -------------------------------------------------------------------------------- /nt/icons/gnu3b32t.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/nt/icons/gnu3b32t.ico -------------------------------------------------------------------------------- /nt/icons/gnu4g48.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/nt/icons/gnu4g48.ico -------------------------------------------------------------------------------- /nt/icons/gnu4g48t.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/nt/icons/gnu4g48t.ico -------------------------------------------------------------------------------- /nt/icons/gnu5w32.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/nt/icons/gnu5w32.ico -------------------------------------------------------------------------------- /nt/icons/gnu5w32t.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/nt/icons/gnu5w32t.ico -------------------------------------------------------------------------------- /nt/icons/gnu6w48.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/nt/icons/gnu6w48.ico -------------------------------------------------------------------------------- /nt/icons/gnu6w48t.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/nt/icons/gnu6w48t.ico -------------------------------------------------------------------------------- /admin/make-tarball.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/admin/make-tarball.txt -------------------------------------------------------------------------------- /doc/lispintro/cons-1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/doc/lispintro/cons-1.pdf -------------------------------------------------------------------------------- /doc/lispintro/cons-2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/doc/lispintro/cons-2.pdf -------------------------------------------------------------------------------- /doc/lispintro/cons-3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/doc/lispintro/cons-3.pdf -------------------------------------------------------------------------------- /doc/lispintro/cons-4.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/doc/lispintro/cons-4.pdf -------------------------------------------------------------------------------- /doc/lispintro/cons-5.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/doc/lispintro/cons-5.pdf -------------------------------------------------------------------------------- /doc/man/ctags.1: -------------------------------------------------------------------------------- 1 | .so man1/etags.1 2 | 3 | .\" arch-tag: 54d4579b-9d66-4ba5-9fda-f01ec83612ad 4 | -------------------------------------------------------------------------------- /etc/images/contact.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/etc/images/contact.pbm -------------------------------------------------------------------------------- /etc/images/data-save.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/etc/images/data-save.pbm -------------------------------------------------------------------------------- /etc/images/diropen.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/etc/images/diropen.pbm -------------------------------------------------------------------------------- /etc/images/fwd-arrow.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/etc/images/fwd-arrow.pbm -------------------------------------------------------------------------------- /etc/images/gnus/fuwo.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/etc/images/gnus/fuwo.pbm -------------------------------------------------------------------------------- /etc/images/gnus/gnus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/etc/images/gnus/gnus.png -------------------------------------------------------------------------------- /etc/images/gnus/post.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/etc/images/gnus/post.pbm -------------------------------------------------------------------------------- /etc/images/gud/break.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/etc/images/gud/break.pbm -------------------------------------------------------------------------------- /etc/images/gud/cont.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/etc/images/gud/cont.pbm -------------------------------------------------------------------------------- /etc/images/gud/down.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/etc/images/gud/down.pbm -------------------------------------------------------------------------------- /etc/images/gud/next.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/etc/images/gud/next.pbm -------------------------------------------------------------------------------- /etc/images/gud/nexti.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/etc/images/gud/nexti.pbm -------------------------------------------------------------------------------- /etc/images/gud/print.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/etc/images/gud/print.pbm -------------------------------------------------------------------------------- /etc/images/gud/pstar.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/etc/images/gud/pstar.pbm -------------------------------------------------------------------------------- /etc/images/gud/run.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/etc/images/gud/run.pbm -------------------------------------------------------------------------------- /etc/images/gud/step.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/etc/images/gud/step.pbm -------------------------------------------------------------------------------- /etc/images/gud/stepi.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/etc/images/gud/stepi.pbm -------------------------------------------------------------------------------- /etc/images/gud/stop.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/etc/images/gud/stop.pbm -------------------------------------------------------------------------------- /etc/images/gud/until.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/etc/images/gud/until.pbm -------------------------------------------------------------------------------- /etc/images/gud/watch.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/etc/images/gud/watch.pbm -------------------------------------------------------------------------------- /etc/images/jump-to.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/etc/images/jump-to.pbm -------------------------------------------------------------------------------- /etc/images/mail/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/etc/images/mail/README -------------------------------------------------------------------------------- /etc/images/mail/move.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/etc/images/mail/move.pbm -------------------------------------------------------------------------------- /etc/images/mail/send.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/etc/images/mail/send.pbm -------------------------------------------------------------------------------- /etc/images/next-node.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/etc/images/next-node.pbm -------------------------------------------------------------------------------- /etc/images/next-page.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/etc/images/next-page.pbm -------------------------------------------------------------------------------- /etc/images/prev-node.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/etc/images/prev-node.pbm -------------------------------------------------------------------------------- /etc/images/refresh.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/etc/images/refresh.pbm -------------------------------------------------------------------------------- /etc/images/up-arrow.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/etc/images/up-arrow.pbm -------------------------------------------------------------------------------- /etc/images/up-node.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/etc/images/up-node.pbm -------------------------------------------------------------------------------- /etc/images/zoom-out.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/etc/images/zoom-out.pbm -------------------------------------------------------------------------------- /etc/refcards/orgcard.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/etc/refcards/orgcard.pdf -------------------------------------------------------------------------------- /etc/refcards/refcard.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/etc/refcards/refcard.pdf -------------------------------------------------------------------------------- /leim/CXTERM-DIC/ETZY.tit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/leim/CXTERM-DIC/ETZY.tit -------------------------------------------------------------------------------- /leim/CXTERM-DIC/QJ.tit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/leim/CXTERM-DIC/QJ.tit -------------------------------------------------------------------------------- /leim/CXTERM-DIC/SW.tit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/leim/CXTERM-DIC/SW.tit -------------------------------------------------------------------------------- /leim/CXTERM-DIC/ZOZY.tit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/leim/CXTERM-DIC/ZOZY.tit -------------------------------------------------------------------------------- /leim/MISC-DIC/CTLau.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/leim/MISC-DIC/CTLau.html -------------------------------------------------------------------------------- /leim/MISC-DIC/pinyin.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/leim/MISC-DIC/pinyin.map -------------------------------------------------------------------------------- /leim/SKK-DIC/SKK-JISYO.L: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/leim/SKK-DIC/SKK-JISYO.L -------------------------------------------------------------------------------- /leim/quail/croatian.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/leim/quail/croatian.el -------------------------------------------------------------------------------- /lisp/calc/calc-units.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/lisp/calc/calc-units.el -------------------------------------------------------------------------------- /lisp/calendar/.cvsignore: -------------------------------------------------------------------------------- 1 | *.elc 2 | cal-loaddefs.el 3 | diary-loaddefs.el 4 | hol-loaddefs.el 5 | -------------------------------------------------------------------------------- /lisp/eshell/.gitignore: -------------------------------------------------------------------------------- 1 | esh-groups.el 2 | 3 | # arch-tag: 270e983f-fee5-4b6d-a00b-c1bafdee8690 4 | -------------------------------------------------------------------------------- /lisp/gnus/gnus-delay.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/lisp/gnus/gnus-delay.el -------------------------------------------------------------------------------- /lisp/gnus/gnus-spec.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/lisp/gnus/gnus-spec.el -------------------------------------------------------------------------------- /lisp/gnus/html2text.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/lisp/gnus/html2text.el -------------------------------------------------------------------------------- /lisp/gnus/nnultimate.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/lisp/gnus/nnultimate.el -------------------------------------------------------------------------------- /lisp/net/eudc-export.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/lisp/net/eudc-export.el -------------------------------------------------------------------------------- /lisp/net/eudc-hotlist.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/lisp/net/eudc-hotlist.el -------------------------------------------------------------------------------- /lisp/net/eudcb-bbdb.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/lisp/net/eudcb-bbdb.el -------------------------------------------------------------------------------- /lisp/net/eudcb-ldap.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/lisp/net/eudcb-ldap.el -------------------------------------------------------------------------------- /lisp/net/tramp-cache.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/lisp/net/tramp-cache.el -------------------------------------------------------------------------------- /lisp/org/org-freemind.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/lisp/org/org-freemind.el -------------------------------------------------------------------------------- /lisp/play/handwrite.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/lisp/play/handwrite.el -------------------------------------------------------------------------------- /lisp/progmodes/python.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/lisp/progmodes/python.el -------------------------------------------------------------------------------- /admin/unidata/.cvsignore: -------------------------------------------------------------------------------- 1 | charprop.el 2 | uni-*.el 3 | unidata.txt 4 | Makefile.unix 5 | Makefile 6 | -------------------------------------------------------------------------------- /doc/lispintro/cons-2a.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/doc/lispintro/cons-2a.pdf -------------------------------------------------------------------------------- /doc/lispintro/drawers.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/doc/lispintro/drawers.pdf -------------------------------------------------------------------------------- /doc/lispintro/lambda-1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/doc/lispintro/lambda-1.pdf -------------------------------------------------------------------------------- /doc/lispintro/lambda-2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/doc/lispintro/lambda-2.pdf -------------------------------------------------------------------------------- /doc/lispintro/lambda-3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/doc/lispintro/lambda-3.pdf -------------------------------------------------------------------------------- /etc/.gitignore: -------------------------------------------------------------------------------- 1 | DOC 2 | DOC-* 3 | icons/ 4 | 5 | # arch-tag: 617d2467-cd9f-42e2-9115-88e1d44e66e6 6 | -------------------------------------------------------------------------------- /etc/images/back-arrow.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/etc/images/back-arrow.pbm -------------------------------------------------------------------------------- /etc/images/gnus/gnntg.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/etc/images/gnus/gnntg.pbm -------------------------------------------------------------------------------- /etc/images/gnus/reply.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/etc/images/gnus/reply.pbm -------------------------------------------------------------------------------- /etc/images/gnus/rot13.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/etc/images/gnus/rot13.pbm -------------------------------------------------------------------------------- /etc/images/gud/finish.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/etc/images/gud/finish.pbm -------------------------------------------------------------------------------- /etc/images/gud/remove.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/etc/images/gud/remove.pbm -------------------------------------------------------------------------------- /etc/images/left-arrow.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/etc/images/left-arrow.pbm -------------------------------------------------------------------------------- /etc/images/mail/inbox.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/etc/images/mail/inbox.pbm -------------------------------------------------------------------------------- /etc/images/mail/repack.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/etc/images/mail/repack.pbm -------------------------------------------------------------------------------- /etc/images/mail/reply.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/etc/images/mail/reply.pbm -------------------------------------------------------------------------------- /etc/images/preferences.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/etc/images/preferences.pbm -------------------------------------------------------------------------------- /etc/images/right-arrow.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/etc/images/right-arrow.pbm -------------------------------------------------------------------------------- /etc/images/smilies/sad.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/etc/images/smilies/sad.pbm -------------------------------------------------------------------------------- /etc/images/smilies/wry.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/etc/images/smilies/wry.pbm -------------------------------------------------------------------------------- /etc/refcards/calccard.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/etc/refcards/calccard.pdf -------------------------------------------------------------------------------- /etc/refcards/dired-ref.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/etc/refcards/dired-ref.pdf -------------------------------------------------------------------------------- /etc/refcards/gnus-logo.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/etc/refcards/gnus-logo.pdf -------------------------------------------------------------------------------- /etc/tutorials/TUTORIAL.bg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/etc/tutorials/TUTORIAL.bg -------------------------------------------------------------------------------- /etc/tutorials/TUTORIAL.cn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/etc/tutorials/TUTORIAL.cn -------------------------------------------------------------------------------- /etc/tutorials/TUTORIAL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/etc/tutorials/TUTORIAL.cs -------------------------------------------------------------------------------- /etc/tutorials/TUTORIAL.de: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/etc/tutorials/TUTORIAL.de -------------------------------------------------------------------------------- /etc/tutorials/TUTORIAL.eo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/etc/tutorials/TUTORIAL.eo -------------------------------------------------------------------------------- /etc/tutorials/TUTORIAL.es: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/etc/tutorials/TUTORIAL.es -------------------------------------------------------------------------------- /etc/tutorials/TUTORIAL.fr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/etc/tutorials/TUTORIAL.fr -------------------------------------------------------------------------------- /etc/tutorials/TUTORIAL.it: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/etc/tutorials/TUTORIAL.it -------------------------------------------------------------------------------- /etc/tutorials/TUTORIAL.nl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/etc/tutorials/TUTORIAL.nl -------------------------------------------------------------------------------- /etc/tutorials/TUTORIAL.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/etc/tutorials/TUTORIAL.pl -------------------------------------------------------------------------------- /etc/tutorials/TUTORIAL.ro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/etc/tutorials/TUTORIAL.ro -------------------------------------------------------------------------------- /etc/tutorials/TUTORIAL.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/etc/tutorials/TUTORIAL.ru -------------------------------------------------------------------------------- /etc/tutorials/TUTORIAL.sk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/etc/tutorials/TUTORIAL.sk -------------------------------------------------------------------------------- /etc/tutorials/TUTORIAL.sl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/etc/tutorials/TUTORIAL.sl -------------------------------------------------------------------------------- /etc/tutorials/TUTORIAL.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/etc/tutorials/TUTORIAL.sv -------------------------------------------------------------------------------- /etc/tutorials/TUTORIAL.zh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/etc/tutorials/TUTORIAL.zh -------------------------------------------------------------------------------- /leim/.gitignore: -------------------------------------------------------------------------------- 1 | *.elc 2 | leim-list.el 3 | 4 | # arch-tag: 652dce56-7a2f-46ff-8699-c3289ccdc165 5 | -------------------------------------------------------------------------------- /leim/CXTERM-DIC/ECDICT.tit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/leim/CXTERM-DIC/ECDICT.tit -------------------------------------------------------------------------------- /leim/CXTERM-DIC/PY-b5.tit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/leim/CXTERM-DIC/PY-b5.tit -------------------------------------------------------------------------------- /leim/CXTERM-DIC/Punct.tit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/leim/CXTERM-DIC/Punct.tit -------------------------------------------------------------------------------- /leim/CXTERM-DIC/QJ-b5.tit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/leim/CXTERM-DIC/QJ-b5.tit -------------------------------------------------------------------------------- /leim/CXTERM-DIC/TONEPY.tit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/leim/CXTERM-DIC/TONEPY.tit -------------------------------------------------------------------------------- /leim/MISC-DIC/ziranma.cin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/leim/MISC-DIC/ziranma.cin -------------------------------------------------------------------------------- /lisp/emacs-lisp/.gitignore: -------------------------------------------------------------------------------- 1 | !*-loaddefs.el 2 | 3 | # arch-tag: d0a60bce-b886-4817-b4c3-9a81ba0308bc 4 | -------------------------------------------------------------------------------- /lisp/language/ethiopic.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/lisp/language/ethiopic.el -------------------------------------------------------------------------------- /lisp/language/romanian.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/lisp/language/romanian.el -------------------------------------------------------------------------------- /lisp/language/thai-word.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/lisp/language/thai-word.el -------------------------------------------------------------------------------- /lisp/progmodes/cc-langs.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/lisp/progmodes/cc-langs.el -------------------------------------------------------------------------------- /lisp/progmodes/hideshow.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/lisp/progmodes/hideshow.el -------------------------------------------------------------------------------- /lisp/textmodes/tildify.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/lisp/textmodes/tildify.el -------------------------------------------------------------------------------- /nt/.arch-inventory: -------------------------------------------------------------------------------- 1 | source ^subdirs\.el$ 2 | 3 | # arch-tag: 01b87183-9d94-4b6b-93cb-fece25c4eec9 4 | -------------------------------------------------------------------------------- /src/m/ibmrs6000.inp: -------------------------------------------------------------------------------- 1 | #! 2 | pthread_yield 3 | 4 | # arch-tag: fc6d01ea-c488-4862-bbdb-e8d3e0f6fdb3 5 | -------------------------------------------------------------------------------- /test/cedet/tests/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/test/cedet/tests/test.cpp -------------------------------------------------------------------------------- /admin/unidata/.gitignore: -------------------------------------------------------------------------------- 1 | *.elc 2 | unidata.txt 3 | 4 | # arch-tag: 1b0c916f-3060-47b4-a8c9-cff5c3598adf 5 | -------------------------------------------------------------------------------- /etc/charsets/IBM891.map: -------------------------------------------------------------------------------- 1 | # Generated from IBM891 in localedate/charmaps of glibc 2 | 0x00-0x7F 0x0000 3 | -------------------------------------------------------------------------------- /etc/charsets/IBM903.map: -------------------------------------------------------------------------------- 1 | # Generated from IBM903 in localedate/charmaps of glibc 2 | 0x00-0x7F 0x0000 3 | -------------------------------------------------------------------------------- /etc/images/bookmark_add.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/etc/images/bookmark_add.pbm -------------------------------------------------------------------------------- /etc/images/gnus/catchup.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/etc/images/gnus/catchup.pbm -------------------------------------------------------------------------------- /etc/images/gnus/cu-exit.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/etc/images/gnus/cu-exit.pbm -------------------------------------------------------------------------------- /etc/images/gnus/exit-gnus.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/etc/images/gnus/exit-gnus.pbm -------------------------------------------------------------------------------- /etc/images/gnus/exit-summ.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/etc/images/gnus/exit-summ.pbm -------------------------------------------------------------------------------- /etc/images/gnus/followup.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/etc/images/gnus/followup.pbm -------------------------------------------------------------------------------- /etc/images/gnus/get-news.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/etc/images/gnus/get-news.pbm -------------------------------------------------------------------------------- /etc/images/gnus/next-ur.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/etc/images/gnus/next-ur.pbm -------------------------------------------------------------------------------- /etc/images/gnus/prev-ur.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/etc/images/gnus/prev-ur.pbm -------------------------------------------------------------------------------- /etc/images/gnus/reply-wo.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/etc/images/gnus/reply-wo.pbm -------------------------------------------------------------------------------- /etc/images/gnus/save-aif.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/etc/images/gnus/save-aif.pbm -------------------------------------------------------------------------------- /etc/images/gnus/save-art.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/etc/images/gnus/save-art.pbm -------------------------------------------------------------------------------- /etc/images/gnus/subscribe.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/etc/images/gnus/subscribe.pbm -------------------------------------------------------------------------------- /etc/images/gnus/uu-decode.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/etc/images/gnus/uu-decode.pbm -------------------------------------------------------------------------------- /etc/images/gnus/uu-post.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/etc/images/gnus/uu-post.pbm -------------------------------------------------------------------------------- /etc/images/mail/compose.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/etc/images/mail/compose.pbm -------------------------------------------------------------------------------- /etc/images/mail/reply-all.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/etc/images/mail/reply-all.pbm -------------------------------------------------------------------------------- /etc/images/mail/reply-to.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/etc/images/mail/reply-to.pbm -------------------------------------------------------------------------------- /etc/images/search-replace.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/etc/images/search-replace.pbm -------------------------------------------------------------------------------- /etc/images/smilies/blink.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/etc/images/smilies/blink.pbm -------------------------------------------------------------------------------- /etc/images/smilies/frown.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/etc/images/smilies/frown.pbm -------------------------------------------------------------------------------- /etc/images/smilies/smile.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/etc/images/smilies/smile.pbm -------------------------------------------------------------------------------- /etc/refcards/cs-dired-ref.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/etc/refcards/cs-dired-ref.pdf -------------------------------------------------------------------------------- /etc/refcards/cs-dired-ref.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/etc/refcards/cs-dired-ref.tex -------------------------------------------------------------------------------- /etc/refcards/cs-refcard.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/etc/refcards/cs-refcard.pdf -------------------------------------------------------------------------------- /etc/refcards/cs-refcard.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/etc/refcards/cs-refcard.tex -------------------------------------------------------------------------------- /etc/refcards/cs-survival.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/etc/refcards/cs-survival.tex -------------------------------------------------------------------------------- /etc/refcards/de-refcard.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/etc/refcards/de-refcard.pdf -------------------------------------------------------------------------------- /etc/refcards/fr-dired-ref.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/etc/refcards/fr-dired-ref.pdf -------------------------------------------------------------------------------- /etc/refcards/fr-dired-ref.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/etc/refcards/fr-dired-ref.tex -------------------------------------------------------------------------------- /etc/refcards/fr-refcard.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/etc/refcards/fr-refcard.pdf -------------------------------------------------------------------------------- /etc/refcards/fr-refcard.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/etc/refcards/fr-refcard.tex -------------------------------------------------------------------------------- /etc/refcards/fr-survival.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/etc/refcards/fr-survival.tex -------------------------------------------------------------------------------- /etc/refcards/gnus-booklet.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/etc/refcards/gnus-booklet.pdf -------------------------------------------------------------------------------- /etc/refcards/gnus-refcard.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/etc/refcards/gnus-refcard.pdf -------------------------------------------------------------------------------- /etc/refcards/pl-refcard.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/etc/refcards/pl-refcard.pdf -------------------------------------------------------------------------------- /etc/refcards/ru-refcard.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/etc/refcards/ru-refcard.pdf -------------------------------------------------------------------------------- /etc/refcards/ru-refcard.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/etc/refcards/ru-refcard.tex -------------------------------------------------------------------------------- /etc/refcards/sk-dired-ref.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/etc/refcards/sk-dired-ref.pdf -------------------------------------------------------------------------------- /etc/refcards/sk-dired-ref.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/etc/refcards/sk-dired-ref.tex -------------------------------------------------------------------------------- /etc/refcards/sk-refcard.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/etc/refcards/sk-refcard.pdf -------------------------------------------------------------------------------- /etc/refcards/sk-refcard.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/etc/refcards/sk-refcard.tex -------------------------------------------------------------------------------- /etc/refcards/sk-survival.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/etc/refcards/sk-survival.tex -------------------------------------------------------------------------------- /etc/schema/xhtml-inlstyle.rnc: -------------------------------------------------------------------------------- 1 | # Inline Style Module 2 | 3 | Core.attrib &= attribute style { text }? 4 | -------------------------------------------------------------------------------- /etc/tutorials/TUTORIAL.pt_BR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/etc/tutorials/TUTORIAL.pt_BR -------------------------------------------------------------------------------- /leim/CXTERM-DIC/4Corner.tit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/leim/CXTERM-DIC/4Corner.tit -------------------------------------------------------------------------------- /leim/CXTERM-DIC/ARRAY30.tit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/leim/CXTERM-DIC/ARRAY30.tit -------------------------------------------------------------------------------- /leim/CXTERM-DIC/CCDOSPY.tit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/leim/CXTERM-DIC/CCDOSPY.tit -------------------------------------------------------------------------------- /leim/CXTERM-DIC/Punct-b5.tit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/leim/CXTERM-DIC/Punct-b5.tit -------------------------------------------------------------------------------- /leim/MISC-DIC/CTLau-b5.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/leim/MISC-DIC/CTLau-b5.html -------------------------------------------------------------------------------- /lisp/calendar/cal-french.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/lisp/calendar/cal-french.el -------------------------------------------------------------------------------- /lisp/international/iso-cvt.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/lisp/international/iso-cvt.el -------------------------------------------------------------------------------- /lisp/language/ethio-util.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/lisp/language/ethio-util.el -------------------------------------------------------------------------------- /lisp/obsolete/iso-insert.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/lisp/obsolete/iso-insert.el -------------------------------------------------------------------------------- /lisp/progmodes/cc-engine.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/lisp/progmodes/cc-engine.el -------------------------------------------------------------------------------- /lisp/textmodes/conf-mode.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/lisp/textmodes/conf-mode.el -------------------------------------------------------------------------------- /test/icalendar-testsuite.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/test/icalendar-testsuite.el -------------------------------------------------------------------------------- /etc/images/gnus/kill-group.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/etc/images/gnus/kill-group.pbm -------------------------------------------------------------------------------- /etc/images/gnus/mail-reply.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/etc/images/gnus/mail-reply.pbm -------------------------------------------------------------------------------- /etc/images/gnus/unsubscribe.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/etc/images/gnus/unsubscribe.pbm -------------------------------------------------------------------------------- /etc/images/mail/reply-from.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/etc/images/mail/reply-from.pbm -------------------------------------------------------------------------------- /etc/refcards/pt-br-refcard.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/etc/refcards/pt-br-refcard.pdf -------------------------------------------------------------------------------- /leim/MISC-DIC/cangjie-table.b5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/leim/MISC-DIC/cangjie-table.b5 -------------------------------------------------------------------------------- /admin/charsets/mapfiles/PTCP154.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/admin/charsets/mapfiles/PTCP154.gz -------------------------------------------------------------------------------- /admin/charsets/mapfiles/Uni2JIS.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/admin/charsets/mapfiles/Uni2JIS.gz -------------------------------------------------------------------------------- /etc/images/gnus/describe-group.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/etc/images/gnus/describe-group.pbm -------------------------------------------------------------------------------- /etc/images/smilies/medium/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/etc/images/smilies/medium/README -------------------------------------------------------------------------------- /lisp/international/iso-transl.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/lisp/international/iso-transl.el -------------------------------------------------------------------------------- /admin/charsets/mapfiles/CP720.map.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/admin/charsets/mapfiles/CP720.map.gz -------------------------------------------------------------------------------- /admin/charsets/mapfiles/CP858.map.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/admin/charsets/mapfiles/CP858.map.gz -------------------------------------------------------------------------------- /admin/charsets/mapfiles/CP932.TXT.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/admin/charsets/mapfiles/CP932.TXT.gz -------------------------------------------------------------------------------- /etc/images/smilies/grayscale/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/etc/images/smilies/grayscale/README -------------------------------------------------------------------------------- /lisp/cedet/semantic/wisent/wisent.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/lisp/cedet/semantic/wisent/wisent.el -------------------------------------------------------------------------------- /admin/charsets/mapfiles/JISX213A.map.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/admin/charsets/mapfiles/JISX213A.map.gz -------------------------------------------------------------------------------- /admin/charsets/mapfiles/MULE-ipa.map.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/admin/charsets/mapfiles/MULE-ipa.map.gz -------------------------------------------------------------------------------- /admin/charsets/mapfiles/stdenc.txt.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/admin/charsets/mapfiles/stdenc.txt.gz -------------------------------------------------------------------------------- /admin/charsets/mapfiles/symbol.txt.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/admin/charsets/mapfiles/symbol.txt.gz -------------------------------------------------------------------------------- /etc/images/mail/flag-for-followup.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/etc/images/mail/flag-for-followup.pbm -------------------------------------------------------------------------------- /etc/images/tree-widget/default/leaf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/etc/images/tree-widget/default/leaf.png -------------------------------------------------------------------------------- /etc/images/tree-widget/default/open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/etc/images/tree-widget/default/open.png -------------------------------------------------------------------------------- /etc/images/tree-widget/folder/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/etc/images/tree-widget/folder/close.png -------------------------------------------------------------------------------- /etc/images/tree-widget/folder/empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/etc/images/tree-widget/folder/empty.png -------------------------------------------------------------------------------- /etc/images/tree-widget/folder/guide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/etc/images/tree-widget/folder/guide.png -------------------------------------------------------------------------------- /etc/images/tree-widget/folder/leaf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/etc/images/tree-widget/folder/leaf.png -------------------------------------------------------------------------------- /etc/images/tree-widget/folder/open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/etc/images/tree-widget/folder/open.png -------------------------------------------------------------------------------- /nt/.gitignore: -------------------------------------------------------------------------------- 1 | config.log 2 | stamp_BLD 3 | 4 | oo/ 5 | oo-spd/ 6 | 7 | # arch-tag: a25a0376-d3d9-4b3e-a52a-7c3eac9fdba3 8 | -------------------------------------------------------------------------------- /admin/charsets/mapfiles/cns2ucsdkw.txt.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/admin/charsets/mapfiles/cns2ucsdkw.txt.gz -------------------------------------------------------------------------------- /etc/images/tree-widget/default/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/etc/images/tree-widget/default/close.png -------------------------------------------------------------------------------- /etc/images/tree-widget/default/empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/etc/images/tree-widget/default/empty.png -------------------------------------------------------------------------------- /etc/images/tree-widget/default/guide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/etc/images/tree-widget/default/guide.png -------------------------------------------------------------------------------- /etc/images/tree-widget/default/handle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/etc/images/tree-widget/default/handle.png -------------------------------------------------------------------------------- /etc/images/tree-widget/folder/handle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/etc/images/tree-widget/folder/handle.png -------------------------------------------------------------------------------- /src/bitmaps/gray.xbm: -------------------------------------------------------------------------------- 1 | #define gray_width 2 2 | #define gray_height 2 3 | static unsigned char gray_bits[] = { 4 | 0x01, 0x02}; 5 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | autom4te.cache 2 | makefile 3 | *~ 4 | 5 | /bin/ 6 | /site-lisp/ 7 | 8 | # arch-tag: 75cd3c50-1875-4814-8360-190f7de38302 9 | -------------------------------------------------------------------------------- /admin/charsets/mapfiles/MULE-ethiopic.map.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/admin/charsets/mapfiles/MULE-ethiopic.map.gz -------------------------------------------------------------------------------- /admin/charsets/mapfiles/MULE-is13194.map.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/admin/charsets/mapfiles/MULE-is13194.map.gz -------------------------------------------------------------------------------- /admin/charsets/mapfiles/MULE-lviscii.map.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/admin/charsets/mapfiles/MULE-lviscii.map.gz -------------------------------------------------------------------------------- /admin/charsets/mapfiles/MULE-sisheng.map.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/admin/charsets/mapfiles/MULE-sisheng.map.gz -------------------------------------------------------------------------------- /admin/charsets/mapfiles/MULE-tibetan.map.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/admin/charsets/mapfiles/MULE-tibetan.map.gz -------------------------------------------------------------------------------- /admin/charsets/mapfiles/MULE-uviscii.map.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/admin/charsets/mapfiles/MULE-uviscii.map.gz -------------------------------------------------------------------------------- /admin/charsets/mapfiles/bulgarian-mik.txt.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/admin/charsets/mapfiles/bulgarian-mik.txt.gz -------------------------------------------------------------------------------- /etc/images/tree-widget/default/end-guide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/etc/images/tree-widget/default/end-guide.png -------------------------------------------------------------------------------- /etc/images/tree-widget/default/no-guide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/etc/images/tree-widget/default/no-guide.png -------------------------------------------------------------------------------- /etc/images/tree-widget/default/no-handle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/etc/images/tree-widget/default/no-handle.png -------------------------------------------------------------------------------- /etc/images/tree-widget/folder/end-guide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/etc/images/tree-widget/folder/end-guide.png -------------------------------------------------------------------------------- /etc/images/tree-widget/folder/no-guide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/etc/images/tree-widget/folder/no-guide.png -------------------------------------------------------------------------------- /etc/images/tree-widget/folder/no-handle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/etc/images/tree-widget/folder/no-handle.png -------------------------------------------------------------------------------- /src/bitmaps/gray1.xbm: -------------------------------------------------------------------------------- 1 | #define gray1_width 2 2 | #define gray1_height 2 3 | static unsigned char gray1_bits[] = { 4 | 0x01, 0x02}; 5 | -------------------------------------------------------------------------------- /etc/charsets/KSC5636.map: -------------------------------------------------------------------------------- 1 | # Generated from KSC5636 in localedate/charmaps of glibc 2 | 0x00-0x5B 0x0000 3 | 0x5C 0x20A9 4 | 0x5D-0x7F 0x005D 5 | -------------------------------------------------------------------------------- /etc/images/icons/hicolor/16x16/apps/emacs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/etc/images/icons/hicolor/16x16/apps/emacs.png -------------------------------------------------------------------------------- /etc/images/icons/hicolor/24x24/apps/emacs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/etc/images/icons/hicolor/24x24/apps/emacs.png -------------------------------------------------------------------------------- /etc/images/icons/hicolor/32x32/apps/emacs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/etc/images/icons/hicolor/32x32/apps/emacs.png -------------------------------------------------------------------------------- /etc/images/icons/hicolor/48x48/apps/emacs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/etc/images/icons/hicolor/48x48/apps/emacs.png -------------------------------------------------------------------------------- /lisp/eshell/.arch-inventory: -------------------------------------------------------------------------------- 1 | # Generated files 2 | precious ^(esh-groups)\.el$ 3 | 4 | # arch-tag: 8dc7bfaa-6ca6-4be0-915a-1e539c3dabfb 5 | -------------------------------------------------------------------------------- /admin/unidata/.arch-inventory: -------------------------------------------------------------------------------- 1 | # Generated at compile time 2 | precious ^unidata\.txt$ 3 | 4 | # arch-tag: 7640ff84-9e72-45e6-a7c7-b7b307b73959 5 | -------------------------------------------------------------------------------- /etc/charsets/TIS-620.map: -------------------------------------------------------------------------------- 1 | # Generated from TIS-620 in localedate/charmaps of glibc 2 | 0x00-0x7F 0x0000 3 | 0xA1-0xDA 0x0E01 4 | 0xDF-0xFB 0x0E3F 5 | -------------------------------------------------------------------------------- /etc/images/icons/hicolor/128x128/apps/emacs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/etc/images/icons/hicolor/128x128/apps/emacs.png -------------------------------------------------------------------------------- /etc/images/icons/hicolor/16x16/apps/emacs22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/etc/images/icons/hicolor/16x16/apps/emacs22.png -------------------------------------------------------------------------------- /etc/images/icons/hicolor/24x24/apps/emacs22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/etc/images/icons/hicolor/24x24/apps/emacs22.png -------------------------------------------------------------------------------- /etc/images/icons/hicolor/32x32/apps/emacs22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/etc/images/icons/hicolor/32x32/apps/emacs22.png -------------------------------------------------------------------------------- /etc/images/icons/hicolor/48x48/apps/emacs22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/etc/images/icons/hicolor/48x48/apps/emacs22.png -------------------------------------------------------------------------------- /nextstep/GNUstep/Emacs.base/Resources/emacs.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/nextstep/GNUstep/Emacs.base/Resources/emacs.tiff -------------------------------------------------------------------------------- /src/bitmaps/gray3.xbm: -------------------------------------------------------------------------------- 1 | #define gray3_width 4 2 | #define gray3_height 4 3 | static unsigned char gray3_bits[] = { 4 | 0x01, 0x00, 0x04, 0x00}; 5 | -------------------------------------------------------------------------------- /doc/lispref/.arch-inventory: -------------------------------------------------------------------------------- 1 | # Generated files 2 | precious ^(config\.status|config\.cache)$ 3 | 4 | # arch-tag: dde817a2-94ff-4c6e-838c-bb5b33e7f0df 5 | -------------------------------------------------------------------------------- /etc/charsets/8859-11.map: -------------------------------------------------------------------------------- 1 | # Generated from ISO-8859-11 in localedate/charmaps of glibc 2 | 0x00-0xA0 0x0000 3 | 0xA1-0xDA 0x0E01 4 | 0xDF-0xFB 0x0E3F 5 | -------------------------------------------------------------------------------- /etc/charsets/IBM904.map: -------------------------------------------------------------------------------- 1 | # Generated from IBM904 in localedate/charmaps of glibc 2 | 0x00-0x7F 0x0000 3 | 0x80 0x00A2 4 | 0xFD 0x00AC 5 | 0xFE 0x00A6 6 | -------------------------------------------------------------------------------- /etc/schema/xhtml-ssismap.rnc: -------------------------------------------------------------------------------- 1 | # Server-side Image Map Module 2 | 3 | # Depends on image module. 4 | 5 | img.attlist &= attribute ismap { "ismap" }? 6 | -------------------------------------------------------------------------------- /etc/nxml/03400-04DBF.el: -------------------------------------------------------------------------------- 1 | (nxml-define-char-name-set 'cjk-unified-ideographs-extension-a 2 | '()) 3 | 4 | ;; arch-tag: 571a41a5-7cc5-47c4-b98c-e98a415723bb 5 | -------------------------------------------------------------------------------- /lisp/calc/.arch-inventory: -------------------------------------------------------------------------------- 1 | # Auto-generated lisp files, which ignore 2 | precious ^(.*-loaddefs)\.el$ 3 | 4 | # arch-tag: 5258f69e-459b-449b-bdd7-bdbd5f948cb9 5 | -------------------------------------------------------------------------------- /lisp/mh-e/.arch-inventory: -------------------------------------------------------------------------------- 1 | # Auto-generated lisp files, which ignore 2 | precious ^(mh-loaddefs)\.el$ 3 | 4 | # arch-tag: 03c1cf02-6c80-44af-b4ec-b41b53fbf8f2 5 | -------------------------------------------------------------------------------- /nextstep/Cocoa/Emacs.base/Contents/Resources/Emacs.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/nextstep/Cocoa/Emacs.base/Contents/Resources/Emacs.icns -------------------------------------------------------------------------------- /nt/subdirs.el: -------------------------------------------------------------------------------- 1 | ;; -*- no-byte-compile: t -*- 2 | (if (fboundp 'normal-top-level-add-subdirs-to-load-path) 3 | (normal-top-level-add-subdirs-to-load-path)) 4 | -------------------------------------------------------------------------------- /src/.gitignore: -------------------------------------------------------------------------------- 1 | buildobj.h 2 | config.h 3 | epaths.h 4 | stamp_BLD 5 | 6 | oo/ 7 | oo-spd/ 8 | 9 | # arch-tag: 0648c91e-6070-4cc5-a029-cade1f8b6098 10 | -------------------------------------------------------------------------------- /etc/schema/xhtml-base.rnc: -------------------------------------------------------------------------------- 1 | # Base Module 2 | 3 | base = element base { base.attlist } 4 | base.attlist = attribute href { URI.datatype } 5 | head.content &= base? 6 | -------------------------------------------------------------------------------- /lisp/.gitignore: -------------------------------------------------------------------------------- 1 | *.elc 2 | *-loaddefs.el 3 | loaddefs.el 4 | subdirs.el 5 | finder-inf.el 6 | cus-load.el 7 | 8 | # arch-tag: ab6e8f91-fb95-4efe-9c1b-68e21561e68a 9 | -------------------------------------------------------------------------------- /lisp/calendar/.arch-inventory: -------------------------------------------------------------------------------- 1 | # Auto-generated lisp files, which ignore 2 | precious ^(.*-loaddefs)\.el$ 3 | 4 | # arch-tag: 6246cac0-cd69-4d59-8677-c1451a4d5831 5 | -------------------------------------------------------------------------------- /nextstep/Cocoa/Emacs.base/Contents/Resources/document.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs/HEAD/nextstep/Cocoa/Emacs.base/Contents/Resources/document.icns -------------------------------------------------------------------------------- /leim/.arch-inventory: -------------------------------------------------------------------------------- 1 | # Auto-generated files, which ignore. 2 | precious ^(stamp-subdir|changed\..*|leim-list\.el)$ 3 | 4 | # arch-tag: a4cda8ae-2a52-4d85-bd29-14e25c7ed2a2 5 | -------------------------------------------------------------------------------- /lib-src/.gitignore: -------------------------------------------------------------------------------- 1 | DOC 2 | ctags.c 3 | getopt.h 4 | stamp_BLD 5 | echolisp.tmp 6 | 7 | oo/ 8 | oo-spd/ 9 | 10 | # arch-tag: bcd85c02-f779-4fe6-bd45-97a21150aadc 11 | -------------------------------------------------------------------------------- /lisp/.arch-inventory: -------------------------------------------------------------------------------- 1 | # Auto-generated lisp files, which ignore 2 | precious ^(loaddefs|finder-inf|cus-load)\.el$ 3 | 4 | # arch-tag: fc62dc9f-3a91-455b-b8e7-d49df66beee0 5 | -------------------------------------------------------------------------------- /leim/quail/.arch-inventory: -------------------------------------------------------------------------------- 1 | # Auto-generated lisp files, which ignore. 2 | precious ^([A-Z0-9].*|tsang-.*|quick-.*)\.el$ 3 | 4 | # arch-tag: 3d0d3e6b-f7c3-4dce-9135-a72ba7fe095d 5 | -------------------------------------------------------------------------------- /nt/inc/netdb.h: -------------------------------------------------------------------------------- 1 | /* null version of - has everything */ 2 | 3 | /* arch-tag: 237ba543-97e2-4bd5-9c9c-32271d955eb1 4 | (do not change this comment) */ 5 | -------------------------------------------------------------------------------- /src/bitmaps/stipple.xbm: -------------------------------------------------------------------------------- 1 | #define stipple_width 16 2 | #define stipple_height 4 3 | static unsigned char stipple_bits[] = { 4 | 0x55, 0x55, 0xee, 0xee, 0x55, 0x55, 0xba, 0xbb}; 5 | -------------------------------------------------------------------------------- /nt/inc/arpa/inet.h: -------------------------------------------------------------------------------- 1 | /* null version of - has everything */ 2 | 3 | /* arch-tag: 13c7a7f7-40d0-49e8-bdfb-6dcf2f3a7340 4 | (do not change this comment) */ 5 | -------------------------------------------------------------------------------- /nt/inc/netinet/in.h: -------------------------------------------------------------------------------- 1 | /* null version of - has everything */ 2 | 3 | /* arch-tag: 49ff589e-100e-4f8f-8b2a-1c3b542590df 4 | (do not change this comment) */ 5 | -------------------------------------------------------------------------------- /nt/inc/unistd.h: -------------------------------------------------------------------------------- 1 | /* Fake unistd.h: config.h already provides most of the relevant things. */ 2 | 3 | /* arch-tag: 68600bcd-3097-4501-a559-551db3cdb9fd 4 | (do not change this comment) */ 5 | -------------------------------------------------------------------------------- /lib-src/README: -------------------------------------------------------------------------------- 1 | This directory contains the source code for the architecture-dependent 2 | files that go in ${archlibdir}. At present, these are mostly utility 3 | programs used by GNU Emacs. 4 | -------------------------------------------------------------------------------- /lisp/.cvsignore: -------------------------------------------------------------------------------- 1 | *.elc 2 | MANIFEST 3 | Makefile 4 | Makefile.unix 5 | makefile 6 | elc.tar.gz 7 | cus-load.el 8 | finder-inf.el 9 | subdirs.el 10 | loaddefs.el 11 | TAGS 12 | TAGS-LISP 13 | -------------------------------------------------------------------------------- /admin/charsets/.arch-inventory: -------------------------------------------------------------------------------- 1 | # Unlike most emacs dirs, admin/charsets has a simple non-autoconf-generated makefile 2 | source ^(Makefile)$ 3 | 4 | # arch-tag: ee36cfe3-96f8-4e91-aec4-008c80a85e6b 5 | -------------------------------------------------------------------------------- /admin/charsets/kuten.awk: -------------------------------------------------------------------------------- 1 | /^[0-9]/ { 2 | ku=substr($1, 3, 2) + 32; 3 | ten=substr($1, 5, 2) + 32; 4 | printf "0x%02X%02X %s\n", ku, ten, $2; 5 | } 6 | 7 | # arch-tag: dade6b45-b4c5-42ab-9d49-d6bf23a710b6 8 | -------------------------------------------------------------------------------- /nt/inc/sys/dir.h: -------------------------------------------------------------------------------- 1 | /* 2 | * map sys\dir.h to ..\..\..\src\ndir.h 3 | */ 4 | 5 | #include "..\..\..\src\ndir.h" 6 | 7 | /* arch-tag: 090c9091-3b16-429b-9c40-8aecce1162be 8 | (do not change this comment) */ 9 | -------------------------------------------------------------------------------- /test/README: -------------------------------------------------------------------------------- 1 | This directory contains files intended to test various aspects of 2 | Emacs's functionality. Please help add tests! 3 | 4 | (Also, see etc/compilation.txt for compilation mode font lock tests.) 5 | -------------------------------------------------------------------------------- /doc/lispref/.cvsignore: -------------------------------------------------------------------------------- 1 | texput.log 2 | elisp.?? 3 | elisp.??? 4 | config.log 5 | config.cache 6 | config.status 7 | Makefile 8 | makefile 9 | elisp 10 | elisp-? 11 | elisp-?? 12 | elisp1* 13 | elisp2* 14 | -------------------------------------------------------------------------------- /src/s/unixware.h: -------------------------------------------------------------------------------- 1 | #include "usg5-4-2.h" 2 | 3 | #define PENDING_OUTPUT_COUNT(FILE) ((FILE)->__ptr - (FILE)->__base) 4 | 5 | /* arch-tag: d82e92e7-9443-4a60-a581-7f293cbae8a3 6 | (do not change this comment) */ 7 | -------------------------------------------------------------------------------- /move-if-change: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | if 3 | test -r $2 4 | then 5 | if 6 | cmp $1 $2 > /dev/null 7 | then 8 | echo $2 is unchanged 9 | rm -f $1 10 | else 11 | mv -f $1 $2 12 | fi 13 | else 14 | mv -f $1 $2 15 | fi 16 | -------------------------------------------------------------------------------- /etc/charsets/JISX0201.map: -------------------------------------------------------------------------------- 1 | # Generated from JIS_X0201 in localedate/charmaps of glibc 2 | 0x00-0x5B 0x0000 3 | 0x5C 0x00A5 4 | 0x5D-0x7D 0x005D 5 | 0x7E 0x203E 6 | 0x7F-0x9F 0x007F 7 | # Generated by hand 8 | 0xA1-0xDF 0xFF61 9 | -------------------------------------------------------------------------------- /etc/FTP: -------------------------------------------------------------------------------- 1 | For information about how to obtain GNU Emacs and other GNU software 2 | by FTP, please see . 3 | 4 | Information about Emacs is also available at 5 | . 6 | 7 | -------------------------------------------------------------------------------- /etc/charsets/8859-6.map: -------------------------------------------------------------------------------- 1 | # Generated from ISO-8859-6 in localedate/charmaps of glibc 2 | 0x00-0xA0 0x0000 3 | 0xA4 0x00A4 4 | 0xAC 0x060C 5 | 0xAD 0x00AD 6 | 0xBB 0x061B 7 | 0xBF 0x061F 8 | 0xC1-0xDA 0x0621 9 | 0xE0-0xF2 0x0640 10 | -------------------------------------------------------------------------------- /lisp/eshell/.cvsignore: -------------------------------------------------------------------------------- 1 | COPYING 2 | FEATURES 3 | INSTALL 4 | Makefile 5 | NEWS 6 | README 7 | _darcs 8 | _pkg.el 9 | auto-autoloads.el 10 | esh-groups.el 11 | esh-toggle.el 12 | eshell-auto.el 13 | eshell.info 14 | eshell.texi 15 | -------------------------------------------------------------------------------- /nextstep/GNUstep/Emacs.base/Resources/README: -------------------------------------------------------------------------------- 1 | COPYRIGHT AND LICENSE INFORMATION FOR IMAGE FILES 2 | 3 | File: emacs.tiff 4 | This is a version of the Emacs 23 icon (see etc/images/icons/README) 5 | by Kentaro Ohkouchi . 6 | -------------------------------------------------------------------------------- /.arch-inventory: -------------------------------------------------------------------------------- 1 | # Generated files 2 | precious ^(config\.status|config\.cache)$ 3 | 4 | # Install-in-place makes these directories, so just ignore them 5 | backup ^(bin|data|lock|site-lisp)$ 6 | 7 | # arch-tag: 6eeeaa4e-cc7e-4b22-b3d7-1089e155da14 8 | -------------------------------------------------------------------------------- /etc/charsets/8859-5.map: -------------------------------------------------------------------------------- 1 | # Generated from ISO-8859-5 in localedate/charmaps of glibc 2 | 0x00-0xA0 0x0000 3 | 0xA1-0xAC 0x0401 4 | 0xAD 0x00AD 5 | 0xAE-0xEF 0x040E 6 | 0xF0 0x2116 7 | 0xF1-0xFC 0x0451 8 | 0xFD 0x00A7 9 | 0xFE-0xFF 0x045E 10 | -------------------------------------------------------------------------------- /etc/celibacy.1: -------------------------------------------------------------------------------- 1 | CELIBACY(1) UNIX Programmer's Manual CELIBACY(1) 2 | 3 | 4 | 5 | NAME 6 | celibacy - don't have sex 7 | 8 | SYNOPSIS 9 | celibacy 10 | 11 | DESCRIPTION 12 | Does nothing worth mentioning. 13 | -------------------------------------------------------------------------------- /etc/schema/xhtml-tgt.rnc: -------------------------------------------------------------------------------- 1 | # Target Module 2 | 3 | a.attlist &= target.attrib 4 | area.attlist &= target.attrib 5 | base.attlist &= target.attrib 6 | link.attrib &= target.attrib 7 | form.attlist &= target.attrib 8 | target.attrib = attribute target { text }? 9 | -------------------------------------------------------------------------------- /etc/schema/xhtml-bdo.rnc: -------------------------------------------------------------------------------- 1 | # Bi-directional Module 2 | 3 | bdo = element bdo { bdo.attlist, Inline.model } 4 | bdo.attlist = Core.attrib, lang.attrib, dir.attrib 5 | dir.attrib = attribute dir { "ltr" | "rtl" } 6 | I18n.attrib &= dir.attrib? 7 | Inline.class |= bdo 8 | -------------------------------------------------------------------------------- /doc/emacs/.cvsignore: -------------------------------------------------------------------------------- 1 | *.aux 2 | *.cp 3 | *.cps 4 | *.dvi 5 | *.fn 6 | *.fns 7 | *.ky 8 | *.kys 9 | *.log 10 | *.op 11 | *.ops 12 | *.pdf 13 | *.pg 14 | *.pgs 15 | *.ps 16 | *.tmp 17 | *.toc 18 | *.tp 19 | *.tps 20 | *.vr 21 | *.vrs 22 | Makefile 23 | makefile 24 | -------------------------------------------------------------------------------- /doc/misc/.cvsignore: -------------------------------------------------------------------------------- 1 | *.aux 2 | *.cp 3 | *.cps 4 | *.dvi 5 | *.fn 6 | *.fns 7 | *.ky 8 | *.kys 9 | *.log 10 | *.op 11 | *.ops 12 | *.pdf 13 | *.pg 14 | *.pgs 15 | *.ps 16 | *.tmp 17 | *.toc 18 | *.tp 19 | *.tps 20 | *.vr 21 | *.vrs 22 | Makefile 23 | makefile 24 | -------------------------------------------------------------------------------- /etc/charsets/8859-8.map: -------------------------------------------------------------------------------- 1 | # Generated from ISO-8859-8 in localedate/charmaps of glibc 2 | 0x00-0xA0 0x0000 3 | 0xA2-0xA9 0x00A2 4 | 0xAA 0x00D7 5 | 0xAB-0xB9 0x00AB 6 | 0xBA 0x00F7 7 | 0xBB-0xBE 0x00BB 8 | 0xDF 0x2017 9 | 0xE0-0xFA 0x05D0 10 | 0xFD-0xFE 0x200E 11 | -------------------------------------------------------------------------------- /leim/SKK-DIC/README: -------------------------------------------------------------------------------- 1 | The file SKK-JISYO.L is a verbatim copy of that distributed with SKK 2 | Ver.8.6. The author of SKK is Masahiko Sato 3 | . SKK is free software distributed 4 | under the terms of the GNU General Public License. 5 | -------------------------------------------------------------------------------- /src/m/sh3.h: -------------------------------------------------------------------------------- 1 | /* Machine description file for SuperH. */ 2 | 3 | #ifdef __BIG_ENDIAN__ 4 | # define WORDS_BIG_ENDIAN 5 | #endif 6 | 7 | #define NO_ARG_ARRAY 8 | 9 | /* arch-tag: 1b01b84f-f044-4afa-aa4b-caa54ec38966 10 | (do not change this comment) */ 11 | -------------------------------------------------------------------------------- /src/.dbxinit: -------------------------------------------------------------------------------- 1 | ignore 14 2 | catch 18 3 | ignore 20 4 | ignore 23 5 | alias s step 6 | alias n next 7 | alias c cont 8 | alias st status 9 | alias r run 10 | alias l list 11 | alias f file 12 | alias q quit 13 | alias w where 14 | alias d delete 15 | alias p print 16 | -------------------------------------------------------------------------------- /admin/unidata/README: -------------------------------------------------------------------------------- 1 | The file `UnicodeData.txt' in this directory is a copy of 2 | on 2009.10.1, 3 | and is a part of the Unicode Character Database governed by the "UCD 4 | Terms of Use" shown in the file `copyright.html'. 5 | -------------------------------------------------------------------------------- /doc/lispintro/.cvsignore: -------------------------------------------------------------------------------- 1 | *.aux 2 | *.fn 3 | *.fns 4 | *.cps 5 | *.cp 6 | *.kys 7 | *.ky 8 | *.toc 9 | *.pgs 10 | *.pg 11 | *.log 12 | *.vrs 13 | *.vr 14 | *.dvi 15 | *.ps 16 | *.tp 17 | *.tps 18 | *.tmp 19 | *.txt 20 | Makefile 21 | makefile 22 | emacs-lisp-intro.pdf 23 | -------------------------------------------------------------------------------- /etc/charsets/IBM874.map: -------------------------------------------------------------------------------- 1 | # Generated from IBM874 in localedate/charmaps of glibc 2 | 0x00-0x7F 0x0000 3 | 0x80 0x20AC 4 | 0x85 0x2026 5 | 0x91-0x92 0x2018 6 | 0x93-0x94 0x201C 7 | 0x95 0x2022 8 | 0x96-0x97 0x2013 9 | 0xA0 0x00A0 10 | 0xA1-0xDA 0x0E01 11 | 0xDF-0xFB 0x0E3F 12 | -------------------------------------------------------------------------------- /nextstep/Cocoa/Emacs.base/Contents/Resources/Credits.html: -------------------------------------------------------------------------------- 1 | http://www.gnu.org/software/emacs 2 | 3 | 5 | -------------------------------------------------------------------------------- /etc/charsets/8859-9.map: -------------------------------------------------------------------------------- 1 | # Generated from ISO-8859-9 in localedate/charmaps of glibc 2 | 0x00-0xCF 0x0000 3 | 0xD0 0x011E 4 | 0xD1-0xDC 0x00D1 5 | 0xDD 0x0130 6 | 0xDE 0x015E 7 | 0xDF-0xEF 0x00DF 8 | 0xF0 0x011F 9 | 0xF1-0xFC 0x00F1 10 | 0xFD 0x0131 11 | 0xFE 0x015F 12 | 0xFF 0x00FF 13 | -------------------------------------------------------------------------------- /etc/emacs.py: -------------------------------------------------------------------------------- 1 | """Wrapper for version-specific implementations of python.el helper 2 | functions """ 3 | 4 | import sys 5 | 6 | if sys.version_info[0] == 3: 7 | from emacs3 import * 8 | else: 9 | from emacs2 import * 10 | 11 | # arch-tag: 894b5227-638f-45fd-8567-0417d5c35900 12 | -------------------------------------------------------------------------------- /lisp/term/apollo.el: -------------------------------------------------------------------------------- 1 | ;; -*- no-byte-compile: t -*- 2 | (defun terminal-init-apollo () 3 | "Terminal initialization function for apollo." 4 | (tty-run-terminal-initialization (selected-frame) "vt100")) 5 | 6 | ;; arch-tag: c72f446f-e6b7-4749-90a4-bd68632adacf 7 | ;;; apollo.el ends here 8 | -------------------------------------------------------------------------------- /lisp/term/vt102.el: -------------------------------------------------------------------------------- 1 | ;; -*- no-byte-compile: t -*- 2 | 3 | (defun terminal-init-vt102 () 4 | "Terminal initialization function for vt102." 5 | (tty-run-terminal-initialization (selected-frame) "vt100")) 6 | 7 | ;; arch-tag: 6e839cfc-125a-4574-82f1-c23a51f7c50f 8 | ;;; vt102.el ends here 9 | -------------------------------------------------------------------------------- /lisp/term/vt125.el: -------------------------------------------------------------------------------- 1 | ;; -*- no-byte-compile: t -*- 2 | 3 | (defun terminal-init-vt125 () 4 | "Terminal initialization function for vt125." 5 | (tty-run-terminal-initialization (selected-frame) "vt100")) 6 | 7 | ;; arch-tag: 1d92d70f-dd55-4a1d-9088-e215a4883801 8 | ;;; vt125.el ends here 9 | -------------------------------------------------------------------------------- /etc/images/custom/down.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * down_xpm[] = { 3 | "8 8 4 1", 4 | " c none", 5 | ". c gray90", 6 | "X c gray45", 7 | "O c gray75", 8 | "........", 9 | ".OOOOOOX", 10 | " .OOOOX ", 11 | " .OOOOX ", 12 | " .OOX ", 13 | " .OOX ", 14 | " OX ", 15 | " OX "}; 16 | -------------------------------------------------------------------------------- /etc/images/custom/right.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * right_xpm[] = { 3 | "8 8 4 1", 4 | " c none", 5 | ". c gray90", 6 | "X c gray45", 7 | "O c gray75", 8 | ".. ", 9 | "..O. ", 10 | "..OOO. ", 11 | "..OOOOOX", 12 | "..OOOOXX", 13 | "..OOXX ", 14 | "..XX ", 15 | "OO "}; 16 | -------------------------------------------------------------------------------- /etc/schema/xhtml-param.rnc: -------------------------------------------------------------------------------- 1 | # Param Module 2 | 3 | param = element param { param.attlist } 4 | param.attlist = 5 | id.attrib, 6 | attribute name { text }, 7 | attribute value { text }?, 8 | attribute valuetype { "data" | "ref" | "object" }?, 9 | attribute type { ContentType.datatype }? 10 | -------------------------------------------------------------------------------- /nt/inc/sys/param.h: -------------------------------------------------------------------------------- 1 | #ifndef _PARAM_H_ 2 | #define _PARAM_H_ 3 | 4 | /* 5 | * sys\param.h doesn't exist on NT, so we'll make one. 6 | */ 7 | 8 | #define NBPG 4096 9 | 10 | #endif /* _PARAM_H_ */ 11 | 12 | /* arch-tag: b1d90296-ec38-4839-83bd-0ddfd2528435 13 | (do not change this comment) */ 14 | -------------------------------------------------------------------------------- /.cvsignore: -------------------------------------------------------------------------------- 1 | *.xdelta 2 | .DS_Store 3 | Makefile 4 | autom4te.cache 5 | bin 6 | boot.log 7 | boot.log.diff 8 | boot.log.old 9 | config.cache 10 | config.log 11 | config.status 12 | data 13 | emacs*.tar.gz 14 | leim*.tar.gz 15 | lock 16 | site-lisp 17 | update.log 18 | _dir-locals.el 19 | _dir-loc.el 20 | 21 | -------------------------------------------------------------------------------- /etc/images/custom/down-pushed.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * down_pushed_xpm[] = { 3 | "8 8 4 1", 4 | " c none", 5 | ". c gray45", 6 | "X c gray90", 7 | "O c gray60", 8 | "........", 9 | ".OOOOOOX", 10 | " .OOOOX ", 11 | " .OOOOX ", 12 | " .OOX ", 13 | " .OOX ", 14 | " OX ", 15 | " OX "}; 16 | -------------------------------------------------------------------------------- /etc/images/custom/right-pushed.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * right_pushed_xpm[] = { 3 | "8 8 4 1", 4 | " c none", 5 | ". c gray45", 6 | "X c gray90", 7 | "O c gray60", 8 | ".. ", 9 | "..O. ", 10 | "..OOO. ", 11 | "..OOOOOX", 12 | "..OOOOXX", 13 | "..OOXX ", 14 | "..XX ", 15 | "OO "}; 16 | -------------------------------------------------------------------------------- /src/s/sol2-6.h: -------------------------------------------------------------------------------- 1 | /* Handle Solaris 2.6. */ 2 | 3 | #include "sol2-5.h" 4 | 5 | #if 0 /* dldump does not handle all the extensions used by GNU ld. */ 6 | #undef UNEXEC 7 | #define UNEXEC unexsol.o 8 | #endif 9 | 10 | /* arch-tag: 71ea3857-89dc-4395-9623-77964e6ed3ca 11 | (do not change this comment) */ 12 | -------------------------------------------------------------------------------- /etc/charsets/JISX213A.map: -------------------------------------------------------------------------------- 1 | # Created manually based on the description of the section 33 2 | # in "JIS X 0213:2004 Amendment 1". 3 | 0x2E21 0x4FF1 4 | 0x2F7E 0x525D 5 | 0x4F54 0x20B9F 6 | 0x4F7E 0x541E 7 | 0x7427 0x5653 8 | 0x7E7A 0x59F8 9 | 0x7E7B 0x5C5B 10 | 0x7E7C 0x5E77 11 | 0x7E7D 0x7626 12 | 0x7E7E 0x7E6B 13 | -------------------------------------------------------------------------------- /etc/schema/xhtml-meta.rnc: -------------------------------------------------------------------------------- 1 | # Meta Module 2 | 3 | meta = element meta { meta.attlist } 4 | meta.attlist = 5 | I18n.attrib, 6 | attribute http-equiv { NMTOKEN.datatype }?, 7 | attribute name { NMTOKEN.datatype }?, 8 | attribute content { text }?, 9 | attribute scheme { text }? 10 | head.content &= meta* 11 | -------------------------------------------------------------------------------- /src/point.h: -------------------------------------------------------------------------------- 1 | #define point_width 5 2 | #define point_height 19 3 | static char point_bits[] = { 4 | 0x1f, 0x0e, 0x0e, 0x04, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 5 | 0x00, 0x00, 0x04, 0x04, 0x0e, 0x0e, 0x1f}; 6 | 7 | /* arch-tag: a8dad510-7254-4964-b71e-bb6f81cce572 8 | (do not change this comment) */ 9 | -------------------------------------------------------------------------------- /vpath.sed: -------------------------------------------------------------------------------- 1 | /^VPATH *=/c\ 2 | # This works only in GNU make. Using the patterns avoids\ 3 | # object files being found by VPATH, and thus permits building\ 4 | # when $srcdir is configured itself.\ 5 | vpath %.c $(srcdir)\ 6 | vpath %.h $(srcdir)\ 7 | \ 8 | 9 | # arch-tag: 56a64b50-e4e8-443a-960f-f13af0f1a545 10 | -------------------------------------------------------------------------------- /autogen.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | echo "Please read INSTALL.CVS for instructions on how to build Emacs from CVS." 4 | 5 | # Exit with failure, since people may have generic build scripts that 6 | # try things like "autogen.sh && ./configure && make". 7 | exit 1 8 | 9 | # arch-tag: a123408c-fada-4bf7-98a0-a786cff918f0 10 | -------------------------------------------------------------------------------- /etc/images/gnus/gnus-pointer.xbm: -------------------------------------------------------------------------------- 1 | #define noname_width 18 2 | #define noname_height 13 3 | static char noname_bits[] = { 4 | 0x00,0x00,0x00,0xc0,0x0c,0x00,0xe0,0x1f,0x00,0x92,0x39,0x00,0x0e,0x71,0x02, 5 | 0x46,0xe0,0x03,0x20,0xc0,0x01,0x00,0x08,0x00,0x10,0x0d,0x00,0xc4,0x08,0x00, 6 | 0x78,0x08,0x00,0x18,0x89,0x00,0x00,0x08,0x00}; 7 | -------------------------------------------------------------------------------- /etc/schema/xhtml-xstyle.rnc: -------------------------------------------------------------------------------- 1 | # Style Module 2 | 3 | style = element style { style.attlist, text } 4 | style.attlist = 5 | title.attrib, 6 | I18n.attrib, 7 | attribute type { ContentType.datatype }, 8 | attribute media { MediaDesc.datatype }?, 9 | attribute xml:space { "preserve" }? 10 | head.content &= style* 11 | -------------------------------------------------------------------------------- /nextstep/GNUstep/Emacs.base/Resources/Emacs.desktop: -------------------------------------------------------------------------------- 1 | [Desktop Entry] 2 | Encoding=UTF-8 3 | Type=Application 4 | Version=23.1.90 5 | Categories=GNUstep 6 | Name=Emacs 7 | Comment=GNU Emacs for NeXT/Open/GNUstep and OS X 8 | Icon=emacs.tiff 9 | Exec=openapp Emacs.app 10 | #TryExec=Emacs.app 11 | FilePattern=Emacs.app;Emacs 12 | -------------------------------------------------------------------------------- /src/bitmaps/dimple1.xbm: -------------------------------------------------------------------------------- 1 | #define dimple1_width 16 2 | #define dimple1_height 16 3 | static unsigned char dimple1_bits[] = { 4 | 0x55, 0x55, 0x00, 0x00, 0x55, 0x55, 0x00, 0x00, 0x55, 0x55, 0x00, 0x00, 5 | 0x55, 0x55, 0x00, 0x00, 0x55, 0x55, 0x00, 0x00, 0x55, 0x55, 0x00, 0x00, 6 | 0x55, 0x55, 0x00, 0x00, 0x55, 0x55, 0x00, 0x00}; 7 | -------------------------------------------------------------------------------- /src/bitmaps/dimple3.xbm: -------------------------------------------------------------------------------- 1 | #define dimple3_width 16 2 | #define dimple3_height 16 3 | static unsigned char dimple3_bits[] = { 4 | 0x11, 0x11, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x11, 0x11, 0x00, 0x00, 5 | 0x00, 0x00, 0x00, 0x00, 0x11, 0x11, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 6 | 0x11, 0x11, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}; 7 | -------------------------------------------------------------------------------- /etc/images/mpc/README: -------------------------------------------------------------------------------- 1 | COPYRIGHT AND LICENSE INFORMATION FOR IMAGE FILES 2 | 3 | Files: add.xpm ffwd.xpm next.xpm pause.xpm play.xpm prev.xpm rewind.xpm stop.xpm 4 | Author: Stefan Monnier 5 | Copyright (C) 2009 Free Software Foundation, Inc. 6 | License: GNU General Public License version 3 or later (see COPYING) 7 | -------------------------------------------------------------------------------- /etc/nxml/0FE20-0FE2F.el: -------------------------------------------------------------------------------- 1 | (nxml-define-char-name-set 'combining-half-marks 2 | '(("COMBINING LIGATURE LEFT HALF" #xFE20) 3 | ("COMBINING LIGATURE RIGHT HALF" #xFE21) 4 | ("COMBINING DOUBLE TILDE LEFT HALF" #xFE22) 5 | ("COMBINING DOUBLE TILDE RIGHT HALF" #xFE23) 6 | )) 7 | 8 | ;; arch-tag: de291a34-737a-4bbb-8d97-94f878921d05 9 | -------------------------------------------------------------------------------- /nt/inc/sys/file.h: -------------------------------------------------------------------------------- 1 | /* 2 | * sys\file.h doesn't exist on NT - only needed for these constants 3 | */ 4 | 5 | #ifndef D_OK 6 | #define F_OK 0 7 | #define X_OK 1 8 | #define W_OK 2 9 | #define R_OK 4 10 | #define D_OK 8 11 | #endif 12 | 13 | /* arch-tag: 7df3e73e-56bc-4ad9-b699-33149ea47959 14 | (do not change this comment) */ 15 | -------------------------------------------------------------------------------- /nt/inc/sys/ioctl.h: -------------------------------------------------------------------------------- 1 | /* 2 | * sys\ioctl.h doesn't exist on NT...rather than including it conditionally 3 | * in many of the source files, we just extend the include path so that the 4 | * compiler will pick this up empty header instead. 5 | */ 6 | 7 | /* arch-tag: c6e9015a-930a-4ad3-b368-ac32f84475d7 8 | (do not change this comment) */ 9 | -------------------------------------------------------------------------------- /etc/schema/xhtml-nameident.rnc: -------------------------------------------------------------------------------- 1 | # Name Identification Module 2 | 3 | a.attlist &= name.attlist 4 | applet.attlist &= name.attlist 5 | form.attlist &= name.attlist 6 | frame.attrib &= name.attlist 7 | iframe.attlist &= name.attlist 8 | img.attlist &= name.attlist 9 | map.attlist &= name.attlist 10 | name.attlist = attribute name { text }? 11 | -------------------------------------------------------------------------------- /leim/quail/.cvsignore: -------------------------------------------------------------------------------- 1 | *.elc 2 | 4Corner.el 3 | ARRAY30.el 4 | CCDOSPY.el 5 | CTLau.el 6 | CTLau-b5.el 7 | ECDICT.el 8 | ETZY.el 9 | PY-b5.el 10 | PY.el 11 | Punct-b5.el 12 | Punct.el 13 | QJ-b5.el 14 | QJ.el 15 | SW.el 16 | TONEPY.el 17 | ZIRANMA.el 18 | ZOZY.el 19 | tsang-cns.el 20 | quick-cns.el 21 | tsang-b5.el 22 | quick-b5.el 23 | 24 | -------------------------------------------------------------------------------- /src/bitmaps/cntrpmsk.xbm: -------------------------------------------------------------------------------- 1 | #define cntr_ptrmsk_width 16 2 | #define cntr_ptrmsk_height 16 3 | static unsigned char cntr_ptrmsk_bits[] = { 4 | 0xc0, 0x03, 0xc0, 0x03, 0xe0, 0x07, 0xe0, 0x07, 0xf0, 0x0f, 0xf0, 0x0f, 5 | 0xf8, 0x1f, 0xf8, 0x1f, 0xfc, 0x3f, 0xfc, 0x3f, 0xfc, 0x3f, 0xdc, 0x3b, 6 | 0xc0, 0x03, 0xc0, 0x03, 0xc0, 0x03, 0xc0, 0x03}; 7 | -------------------------------------------------------------------------------- /src/bitmaps/crosswv.xbm: -------------------------------------------------------------------------------- 1 | #define cross_weave_width 16 2 | #define cross_weave_height 16 3 | static unsigned char cross_weave_bits[] = { 4 | 0x55, 0x55, 0x88, 0x88, 0x55, 0x55, 0x22, 0x22, 0x55, 0x55, 0x88, 0x88, 5 | 0x55, 0x55, 0x22, 0x22, 0x55, 0x55, 0x88, 0x88, 0x55, 0x55, 0x22, 0x22, 6 | 0x55, 0x55, 0x88, 0x88, 0x55, 0x55, 0x22, 0x22}; 7 | -------------------------------------------------------------------------------- /src/bitmaps/leftpmsk.xbm: -------------------------------------------------------------------------------- 1 | #define left_ptrmsk_width 16 2 | #define left_ptrmsk_height 16 3 | static unsigned char left_ptrmsk_bits[] = { 4 | 0x0c, 0x00, 0x1c, 0x00, 0x3c, 0x00, 0x7c, 0x00, 0xfc, 0x00, 0xfc, 0x01, 5 | 0xfc, 0x03, 0xfc, 0x07, 0xfc, 0x0f, 0xfc, 0x0f, 0xfc, 0x01, 0xdc, 0x03, 6 | 0xcc, 0x03, 0x80, 0x07, 0x80, 0x07, 0x00, 0x03}; 7 | -------------------------------------------------------------------------------- /etc/images/letter.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * letter_xpm[] = { 3 | "14 10 2 1", 4 | ". c opaque", 5 | " c None", 6 | "..............", 7 | "... ...", 8 | ". . . .", 9 | ". . . .", 10 | ". .... .", 11 | ". . .. . .", 12 | ". . . .", 13 | ". . . .", 14 | ".. ..", 15 | ".............."}; 16 | -------------------------------------------------------------------------------- /etc/nxml/test-valid.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | A valid document 4 | 5 | 6 |

This is a valid, albeit boring, XHTML document.

7 | 8 | 9 | 10 | 12 | -------------------------------------------------------------------------------- /src/bitmaps/rtpmsk.xbm: -------------------------------------------------------------------------------- 1 | #define right_ptrmsk_width 16 2 | #define right_ptrmsk_height 16 3 | static unsigned char right_ptrmsk_bits[] = { 4 | 0x00, 0x30, 0x00, 0x38, 0x00, 0x3c, 0x00, 0x3e, 0x00, 0x3f, 0x80, 0x3f, 5 | 0xc0, 0x3f, 0xe0, 0x3f, 0xf0, 0x3f, 0xf0, 0x3f, 0x80, 0x3f, 0xc0, 0x3b, 6 | 0xc0, 0x33, 0xe0, 0x01, 0xe0, 0x01, 0xc0, 0x00}; 7 | -------------------------------------------------------------------------------- /etc/charsets/8859-15.map: -------------------------------------------------------------------------------- 1 | # Generated from ISO-8859-15 in localedate/charmaps of glibc 2 | 0x00-0xA3 0x0000 3 | 0xA4 0x20AC 4 | 0xA5 0x00A5 5 | 0xA6 0x0160 6 | 0xA7 0x00A7 7 | 0xA8 0x0161 8 | 0xA9-0xB3 0x00A9 9 | 0xB4 0x017D 10 | 0xB5-0xB7 0x00B5 11 | 0xB8 0x017E 12 | 0xB9-0xBB 0x00B9 13 | 0xBC-0xBD 0x0152 14 | 0xBE 0x0178 15 | 0xBF-0xFF 0x00BF 16 | -------------------------------------------------------------------------------- /nextstep/Cocoa/Emacs.base/Contents/Resources/English.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | CFBundleName = "Emacs"; 4 | CFBundleShortVersionString = "Version 23.1.90"; 5 | CFBundleGetInfoString = "Emacs version 23.1.90, NS Windowing"; 6 | NSHumanReadableCopyright = "Copyright (C) 2009 Free Software Foundation, Inc."; 7 | -------------------------------------------------------------------------------- /etc/SERVICE: -------------------------------------------------------------------------------- 1 | GNU Service Directory 2 | --------------------- 3 | 4 | Please see for a list of 5 | people who have asked to be listed as offering support services for 6 | GNU software, including GNU Emacs, for a fee or in some cases at no 7 | charge. 8 | 9 | 10 | arch-tag: 1253ce32-1cbd-428a-ac36-70ed9e3999fc 11 | -------------------------------------------------------------------------------- /etc/nxml/test-invalid.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | An invalid document 4 | 5 | 6 |

This XHTML document is invalid.

7 | 8 | 9 | 10 | 12 | -------------------------------------------------------------------------------- /etc/schema/xhtml-image.rnc: -------------------------------------------------------------------------------- 1 | # Image Module 2 | 3 | img = element img { img.attlist } 4 | img.attlist = 5 | Common.attrib, 6 | attribute src { URI.datatype }, 7 | attribute alt { Text.datatype }, 8 | attribute longdesc { URI.datatype }?, 9 | attribute height { Length.datatype }?, 10 | attribute width { Length.datatype }? 11 | Inline.class |= img 12 | -------------------------------------------------------------------------------- /.dir-locals.el: -------------------------------------------------------------------------------- 1 | ((nil . ((tab-width . 8) 2 | (fill-column . 70))) 3 | (c-mode . ((c-file-style . "GNU"))) 4 | (change-log-mode . ((add-log-time-zone-rule . t) 5 | (fill-column . 74) 6 | (bug-reference-url-format . "http://debbugs.gnu.org/%s") 7 | (mode . bug-reference)))) 8 | 9 | ;; arch-tag: fb93c160-e9fe-4184-aad1-e4f5daa11cbd 10 | -------------------------------------------------------------------------------- /admin/notes/trailing-whitespace: -------------------------------------------------------------------------------- 1 | ttn 2003-02-14 2 | 3 | apparently there was a big discussion on emacs-devel wrt trailing whitespace. 4 | there was a mass-change to remove such from various branches in cvs. probably 5 | it's a good idea to avoid adding trailing whitespace in new code/docs and in 6 | changes. 7 | 8 | ;;; arch-tag: de441379-c345-4826-a784-352b5413a698 9 | -------------------------------------------------------------------------------- /src/.cvsignore: -------------------------------------------------------------------------------- 1 | *-spd 2 | *.core 3 | *.d 4 | *.pdb 5 | .gdb_history 6 | Makefile 7 | makefile 8 | Makefile.c 9 | TAGS-LISP 10 | _gdbinit 11 | _dbxinit 12 | bootstrap-emacs 13 | buildobj.h 14 | config.h 15 | config.stamp 16 | emacs 17 | emacs-* 18 | epaths.h 19 | gdb.ini 20 | obj 21 | oo 22 | prefix-args 23 | stamp-oldxmenu 24 | temacs 25 | stamp_BLD 26 | deps 27 | -------------------------------------------------------------------------------- /lisp/term/cygwin.el: -------------------------------------------------------------------------------- 1 | ;;; cygwin.el --- support for the Cygwin terminal -*- no-byte-compile: t -*- 2 | 3 | ;;; The Cygwin terminal can't really display underlines. 4 | 5 | (defun terminal-init-cygwin () 6 | "Terminal initialization function for cygwin." 7 | (tty-no-underline)) 8 | 9 | ;; arch-tag: ca81ce67-3c41-4883-a29b-4c3d64a21191 10 | ;;; cygwin.el ends here 11 | -------------------------------------------------------------------------------- /etc/nxml/0FFF0-0FFFF.el: -------------------------------------------------------------------------------- 1 | (nxml-define-char-name-set 'specials 2 | '(("INTERLINEAR ANNOTATION ANCHOR" #xFFF9) 3 | ("INTERLINEAR ANNOTATION SEPARATOR" #xFFFA) 4 | ("INTERLINEAR ANNOTATION TERMINATOR" #xFFFB) 5 | ("OBJECT REPLACEMENT CHARACTER" #xFFFC) 6 | ("REPLACEMENT CHARACTER" #xFFFD) 7 | )) 8 | 9 | ;; arch-tag: 0bef6e81-4857-4032-a18a-18784233cc81 10 | -------------------------------------------------------------------------------- /test/cedet/tests/scopetest.java: -------------------------------------------------------------------------------- 1 | class Foo { 2 | 3 | public void a1() {} 4 | 5 | class Bar { 6 | 7 | public int a2() {} 8 | 9 | public void b() { 10 | a // -1- 11 | } 12 | 13 | class Baz { 14 | 15 | public int a3() {} 16 | 17 | public Baz(int a4) { 18 | a // -2- 19 | } 20 | 21 | } 22 | 23 | } 24 | 25 | } -------------------------------------------------------------------------------- /src/m/xtensa.h: -------------------------------------------------------------------------------- 1 | /* Machine description file for Tensilica Xtensa. 2 | 3 | Add a license notice if this grows to > 10 lines of code. */ 4 | 5 | #define NO_ARG_ARRAY 6 | 7 | #ifdef __LITTLE_ENDIAN 8 | #undef WORDS_BIG_ENDIAN 9 | #else 10 | #define WORDS_BIG_ENDIAN 11 | #endif 12 | 13 | /* arch-tag: fe5872de-d565-4d81-8fe0-ea19865b3e6a 14 | (do not change this comment) */ 15 | -------------------------------------------------------------------------------- /leim/quail/.gitignore: -------------------------------------------------------------------------------- 1 | 4Corner.el 2 | ARRAY30.el 3 | CCDOSPY.el 4 | CTLau-b5.el 5 | CTLau.el 6 | ECDICT.el 7 | ETZY.el 8 | PY-b5.el 9 | PY.el 10 | Punct-b5.el 11 | Punct.el 12 | QJ-b5.el 13 | QJ.el 14 | SW.el 15 | TONEPY.el 16 | ZIRANMA.el 17 | ZOZY.el 18 | quick-b5.el 19 | quick-cns.el 20 | tsang-b5.el 21 | tsang-cns.el 22 | 23 | # arch-tag: 51d8b13a-24b5-45fb-8451-7bef7f101f26 24 | -------------------------------------------------------------------------------- /lisp/term/bobcat.el: -------------------------------------------------------------------------------- 1 | ;; -*- no-byte-compile: t -*- 2 | 3 | (defun terminal-init-bobcat () 4 | "Terminal initialization function for bobcat." 5 | ;; HP terminals usually encourage using ^H as the rubout character 6 | (keyboard-translate ?\177 ?\^h) 7 | (keyboard-translate ?\^h ?\177)) 8 | 9 | ;; arch-tag: 754e4520-0a3e-4e6e-8ca5-9481b1f85cf7 10 | ;;; bobcat.el ends here 11 | -------------------------------------------------------------------------------- /lib-src/.cvsignore: -------------------------------------------------------------------------------- 1 | DOC 2 | Makefile.c 3 | b2m 4 | ctags* 5 | cvtmail 6 | digest-doc 7 | ebrowse 8 | emacsclient 9 | etags 10 | fakemail 11 | getopt.h 12 | hexl 13 | make-docfile 14 | movemail 15 | obj 16 | oo 17 | profile 18 | sorted-doc 19 | test-distrib 20 | update-game-score 21 | yow 22 | Makefile 23 | makefile 24 | blessmail 25 | *-spd 26 | *.pdb 27 | stamp_BLD 28 | echolisp.tmp 29 | -------------------------------------------------------------------------------- /src/bitmaps/cntrptr.xbm: -------------------------------------------------------------------------------- 1 | #define cntr_ptr_width 16 2 | #define cntr_ptr_height 16 3 | #define cntr_ptr_x_hot 7 4 | #define cntr_ptr_y_hot 1 5 | static unsigned char cntr_ptr_bits[] = { 6 | 0x00, 0x00, 0x80, 0x01, 0x80, 0x01, 0xc0, 0x03, 0xc0, 0x03, 0xe0, 0x07, 7 | 0xe0, 0x07, 0xf0, 0x0f, 0xf0, 0x0f, 0x98, 0x19, 0x88, 0x11, 0x80, 0x01, 8 | 0x80, 0x01, 0x80, 0x01, 0x80, 0x01, 0x00, 0x00}; 9 | -------------------------------------------------------------------------------- /src/bitmaps/leftptr.xbm: -------------------------------------------------------------------------------- 1 | #define left_ptr_width 16 2 | #define left_ptr_height 16 3 | #define left_ptr_x_hot 3 4 | #define left_ptr_y_hot 1 5 | static unsigned char left_ptr_bits[] = { 6 | 0x00, 0x00, 0x08, 0x00, 0x18, 0x00, 0x38, 0x00, 0x78, 0x00, 0xf8, 0x00, 7 | 0xf8, 0x01, 0xf8, 0x03, 0xf8, 0x07, 0xf8, 0x00, 0xd8, 0x00, 0x88, 0x01, 8 | 0x80, 0x01, 0x00, 0x03, 0x00, 0x03, 0x00, 0x00}; 9 | -------------------------------------------------------------------------------- /src/bitmaps/rtptr.xbm: -------------------------------------------------------------------------------- 1 | #define right_ptr_width 16 2 | #define right_ptr_height 16 3 | #define right_ptr_x_hot 12 4 | #define right_ptr_y_hot 1 5 | static unsigned char right_ptr_bits[] = { 6 | 0x00, 0x00, 0x00, 0x10, 0x00, 0x18, 0x00, 0x1c, 0x00, 0x1e, 0x00, 0x1f, 7 | 0x80, 0x1f, 0xc0, 0x1f, 0xe0, 0x1f, 0x00, 0x1f, 0x00, 0x1b, 0x80, 0x11, 8 | 0x80, 0x01, 0xc0, 0x00, 0xc0, 0x00, 0x00, 0x00}; 9 | -------------------------------------------------------------------------------- /etc/images/separator.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * separator_xpm[] = { 3 | "2 24 3 1", 4 | " c None", 5 | ". c #DBD3CB", 6 | "+ c #FCFBFA", 7 | " ", 8 | " ", 9 | " ", 10 | ".+", 11 | ".+", 12 | ".+", 13 | ".+", 14 | ".+", 15 | ".+", 16 | ".+", 17 | ".+", 18 | ".+", 19 | ".+", 20 | ".+", 21 | ".+", 22 | ".+", 23 | ".+", 24 | ".+", 25 | ".+", 26 | ".+", 27 | ".+", 28 | " ", 29 | " ", 30 | " "}; 31 | -------------------------------------------------------------------------------- /lib-src/.arch-inventory: -------------------------------------------------------------------------------- 1 | # Ignore binaries 2 | backup ^(test-distrib|make-docfile|profile|digest-doc|movemail|fakemail|blessmail|hexl|update-game-score|etags|ctags|emacsclient|b2m|ebrowse|sorted-doc)$ 3 | 4 | # Building actually makes a copy/link of the source file 5 | precious ^(ctags\.c)$ 6 | 7 | # Windows generates this 8 | backup ^(DOC)$ 9 | 10 | # arch-tag: da33b3d6-170d-4fe5-9eb8-ed2753bc9b4f 11 | -------------------------------------------------------------------------------- /etc/schema/xhtml-edit.rnc: -------------------------------------------------------------------------------- 1 | # Edit Module 2 | 3 | del = element del { del.attlist, Inline.model } 4 | del.attlist = Edit.attrib 5 | ins = element ins { ins.attlist, Inline.model } 6 | ins.attlist = Edit.attrib 7 | Edit.attrib = 8 | attribute cite { URI.datatype }?, 9 | attribute datetime { Datetime.datatype }? 10 | Edit.class = del | ins 11 | Inline.class |= Edit.class 12 | Block.class |= Edit.class 13 | -------------------------------------------------------------------------------- /src/m/README: -------------------------------------------------------------------------------- 1 | This directory contains C header files containing machine-specific 2 | definitions. Each file describes a particular machine. The emacs 3 | configuration script edits ../config.h to include the appropriate one of 4 | these files, and then each emacs source file includes config.h. 5 | 6 | template.h is a generic template for machine descriptions; it 7 | describes the parameters a machine file can specify. 8 | -------------------------------------------------------------------------------- /etc/charsets/8859-7.map: -------------------------------------------------------------------------------- 1 | # Generated from ISO-8859-7 in localedate/charmaps of glibc 2 | 0x00-0xA0 0x0000 3 | 0xA1-0xA2 0x2018 4 | 0xA3 0x00A3 5 | 0xA4 0x20AC 6 | 0xA5 0x20AF 7 | 0xA6-0xA9 0x00A6 8 | 0xAA 0x037A 9 | 0xAB-0xAD 0x00AB 10 | 0xAF 0x2015 11 | 0xB0-0xB3 0x00B0 12 | 0xB4-0xB6 0x0384 13 | 0xB7 0x00B7 14 | 0xB8-0xBA 0x0388 15 | 0xBB 0x00BB 16 | 0xBC 0x038C 17 | 0xBD 0x00BD 18 | 0xBE-0xD1 0x038E 19 | 0xD3-0xFE 0x03A3 20 | -------------------------------------------------------------------------------- /etc/images/tree-widget/default/no-guide.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * no_guide_xpm[] = { 3 | "6 21 1 1", 4 | " c None", 5 | " ", 6 | " ", 7 | " ", 8 | " ", 9 | " ", 10 | " ", 11 | " ", 12 | " ", 13 | " ", 14 | " ", 15 | " ", 16 | " ", 17 | " ", 18 | " ", 19 | " ", 20 | " ", 21 | " ", 22 | " ", 23 | " ", 24 | " ", 25 | " "}; 26 | -------------------------------------------------------------------------------- /src/s/README: -------------------------------------------------------------------------------- 1 | This directory contains C header files containing 2 | operating-system-specific definitions. Each file describes a 3 | particular operating system. The emacs configuration script edits 4 | ../config.h to include the appropriate one of these files, and then 5 | each emacs source file includes config.h. 6 | 7 | template.h is a generic template for system descriptions; it describes 8 | the parameters a system file can specify. 9 | -------------------------------------------------------------------------------- /src/s/gnu-kfreebsd.h: -------------------------------------------------------------------------------- 1 | #include "gnu-linux.h" 2 | 3 | /* SYSTEM_TYPE should indicate the kind of system you are using. 4 | It sets the Lisp variable system-type. */ 5 | #undef SYSTEM_TYPE 6 | #define SYSTEM_TYPE "gnu/kfreebsd" /* All the best software is free */ 7 | 8 | #define NO_TERMIO /* use only */ 9 | 10 | /* arch-tag: 8d098200-2586-469e-99ab-6d092c035e03 11 | (do not change this comment) */ 12 | -------------------------------------------------------------------------------- /etc/.arch-inventory: -------------------------------------------------------------------------------- 1 | # Unlike most emacs dirs, etc has a simple non-autoconf-generated makefile 2 | source ^(Makefile)$ 3 | 4 | # Auto-generated files, which ignore 5 | precious ^(buildobj\.lst)$ 6 | 7 | # Generated files (DOC-X is generated on windows) 8 | backup ^(DOC(|-[0-9.]*|-X))$ 9 | 10 | # Install-in-place on NT makes this directory, so just ignore it 11 | backup ^(icons)$ 12 | 13 | # arch-tag: 5a1d62e0-593a-48cd-8743-8d45dc58dfae 14 | -------------------------------------------------------------------------------- /etc/images/ezimage/label.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * sb_label_xpm[] = { 3 | "10 16 3 1", 4 | " c None", 5 | ". c gray", 6 | "+ c blue", 7 | " .....", 8 | " ..+++++", 9 | " .+++++++", 10 | " .++++++++", 11 | " .++++++++", 12 | ".+++++++++", 13 | ".+++++++++", 14 | ".+++++++++", 15 | ".+++++++++", 16 | ".+++++++++", 17 | ".+++++++++", 18 | ".+++++++++", 19 | ".+++++++++", 20 | ".+++++++++", 21 | ".+++++++++", 22 | ".+++++++++"}; 23 | -------------------------------------------------------------------------------- /etc/emacs.desktop: -------------------------------------------------------------------------------- 1 | [Desktop Entry] 2 | Name=Emacs 3 | GenericName=Text Editor 4 | Comment=Edit text 5 | MimeType=text/english;text/plain;text/x-makefile;text/x-c++hdr;text/x-c++src;text/x-chdr;text/x-csrc;text/x-java;text/x-moc;text/x-pascal;text/x-tcl;text/x-tex;application/x-shellscript;text/x-c;text/x-c++; 6 | Exec=emacs %F 7 | Icon=emacs 8 | Type=Application 9 | Terminal=false 10 | Categories=Development;TextEditor; 11 | StartupWMClass=Emacs 12 | -------------------------------------------------------------------------------- /etc/images/ezimage/info.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * sb_info_xpm[] = { 3 | "10 15 4 1", 4 | " c None", 5 | ". c #BEBEBE", 6 | "+ c #0000FF", 7 | "@ c #FFFFFF", 8 | " .. ", 9 | " ..+++. ", 10 | " .+++@++. ", 11 | " .+++++++ ", 12 | " .+++++++ ", 13 | ".++@@@++++", 14 | ".++++@++++", 15 | ".++++@++++", 16 | ".++++@++++", 17 | " .+++@++++", 18 | " .+++@+++ ", 19 | " .+@@@@@+ ", 20 | " .+++++++ ", 21 | " .+++++ ", 22 | " ++ "}; 23 | -------------------------------------------------------------------------------- /etc/images/smilies/blink.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * blink_xpm[] = { 3 | "13 14 3 1", 4 | " c None", 5 | ". c #000000", 6 | "+ c #FFDD00", 7 | " ....... ", 8 | " ..+++++.. ", 9 | " .+++++++++. ", 10 | ".+++++++++++.", 11 | ".+++++++..++.", 12 | ".+++++++..++.", 13 | ".++...++++++.", 14 | ".+++++++++++.", 15 | ".++++++++.++.", 16 | ".++.+++++.++.", 17 | ".+++.....+++.", 18 | " .+++++++++. ", 19 | " ..+++++.. ", 20 | " ....... "}; 21 | -------------------------------------------------------------------------------- /etc/images/smilies/cry.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * cry_xpm[] = { 3 | "13 14 3 1", 4 | " c None", 5 | ". c #000000", 6 | "+ c #FFDD00", 7 | " ....... ", 8 | " ..+++++.. ", 9 | " .+++++++++. ", 10 | ".+++++++++++.", 11 | ".++..+++..++.", 12 | ".++++++++.++.", 13 | ".+++++++.+.+.", 14 | ".+++++++.+.+.", 15 | ".++++++++..+.", 16 | ".+++.....+++.", 17 | ".++.+++++.++.", 18 | " .+++++++++. ", 19 | " ..+++++.. ", 20 | " ....... "}; 21 | -------------------------------------------------------------------------------- /etc/images/smilies/dead.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * dead_xpm[] = { 3 | "13 14 3 1", 4 | " c None", 5 | ". c #000000", 6 | "+ c #FFDD00", 7 | " ....... ", 8 | " ..+++++.. ", 9 | " .+++++++++. ", 10 | ".+++++++++++.", 11 | ".++.+.+.+.++.", 12 | ".+++.+++.+++.", 13 | ".++.+.+.+.++.", 14 | ".+++++++++++.", 15 | ".+++++++++++.", 16 | ".+.+++++++.+.", 17 | ".++.......++.", 18 | " .+++++++++. ", 19 | " ..+++++.. ", 20 | " ....... "}; 21 | -------------------------------------------------------------------------------- /etc/images/smilies/frown.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * frown_xpm[] = { 3 | "13 14 3 1", 4 | " c None", 5 | ". c #000000", 6 | "+ c #FFDD00", 7 | " ....... ", 8 | " ..+++++.. ", 9 | " .+++++++++. ", 10 | ".++..+++..++.", 11 | ".++++.+.++++.", 12 | ".+...+++...+.", 13 | ".+...+++...+.", 14 | ".+++++++++++.", 15 | ".+++.....+++.", 16 | ".++.+++++.++.", 17 | ".++.+++++.++.", 18 | " .+++++++++. ", 19 | " ..+++++.. ", 20 | " ....... "}; 21 | -------------------------------------------------------------------------------- /etc/images/smilies/sad.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * sad_xpm[] = { 3 | "13 14 3 1", 4 | " c None", 5 | ". c #000000", 6 | "+ c #FFDD00", 7 | " ....... ", 8 | " ..+++++.. ", 9 | " .+++++++++. ", 10 | ".+++++++++++.", 11 | ".++..+++..++.", 12 | ".++..+++..++.", 13 | ".+++++++++++.", 14 | ".+++++++++++.", 15 | ".+++.....+++.", 16 | ".++.+++++.++.", 17 | ".++.+++++.++.", 18 | " .+++++++++. ", 19 | " ..+++++.. ", 20 | " ....... "}; 21 | -------------------------------------------------------------------------------- /etc/images/smilies/smile.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * smile_xpm[] = { 3 | "13 14 3 1", 4 | " c None", 5 | ". c #000000", 6 | "+ c #FFDD00", 7 | " ....... ", 8 | " ..+++++.. ", 9 | " .+++++++++. ", 10 | ".+++++++++++.", 11 | ".++..+++..++.", 12 | ".++..+++..++.", 13 | ".+++++++++++.", 14 | ".+++++++++++.", 15 | ".++.+++++.++.", 16 | ".++.+++++.++.", 17 | ".+++.....+++.", 18 | " .+++++++++. ", 19 | " ..+++++.. ", 20 | " ....... "}; 21 | -------------------------------------------------------------------------------- /etc/images/smilies/wry.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * wry_xpm[] = { 3 | "13 14 3 1", 4 | " c None", 5 | ". c #000000", 6 | "+ c #FFDD00", 7 | " ....... ", 8 | " ..+++++.. ", 9 | " .+++++++++. ", 10 | ".+++++++++++.", 11 | ".+++++++..++.", 12 | ".++..+++..++.", 13 | ".++..+++++++.", 14 | ".+++++++++++.", 15 | ".+++++++...+.", 16 | ".+++++...+++.", 17 | ".++++..+++++.", 18 | " .+++.+++++. ", 19 | " ..+++++.. ", 20 | " ....... "}; 21 | -------------------------------------------------------------------------------- /etc/images/tree-widget/default/guide.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * guide_xpm[] = { 3 | "6 21 2 1", 4 | " c None", 5 | ". c #ADA5C6", 6 | " .", 7 | " .", 8 | " .", 9 | " .", 10 | " .", 11 | " .", 12 | " .", 13 | " .", 14 | " .", 15 | " .", 16 | " .", 17 | " .", 18 | " .", 19 | " .", 20 | " .", 21 | " .", 22 | " .", 23 | " .", 24 | " .", 25 | " .", 26 | " ."}; 27 | -------------------------------------------------------------------------------- /etc/images/tree-widget/folder/no-guide.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * no_guide_xpm[] = { 3 | "6 22 1 1", 4 | " c None", 5 | " ", 6 | " ", 7 | " ", 8 | " ", 9 | " ", 10 | " ", 11 | " ", 12 | " ", 13 | " ", 14 | " ", 15 | " ", 16 | " ", 17 | " ", 18 | " ", 19 | " ", 20 | " ", 21 | " ", 22 | " ", 23 | " ", 24 | " ", 25 | " ", 26 | " "}; 27 | -------------------------------------------------------------------------------- /etc/yow.lines: -------------------------------------------------------------------------------- 1 | A data base Zippy the pinhead might love. 2 | Everything up to the first ascii \000 (`null') character is a comment. 3 | The file consists of Zippy quotations (from various comic books and 4 | strips by Bill Griffith) followed by a null character. 5 | Newline characters following a quotation are ignored and are present 6 | only for readability. 7 | Have FUN! 8 | 9 | Yow! Legally-imposed CULTURE-reduction is CABBAGE-BRAINED! 10 | -------------------------------------------------------------------------------- /lisp/term/vt300.el: -------------------------------------------------------------------------------- 1 | ;; -*- no-byte-compile: t -*- 2 | (defun terminal-init-vt300 () 3 | "Terminal initialization function for vt300." 4 | (tty-run-terminal-initialization (selected-frame) "vt100") 5 | ;; Make F11 an escape key. 6 | (define-key input-decode-map "\e[23~" [f11]) ;Probably redundant. 7 | (define-key local-function-key-map [f11] [?\e])) 8 | 9 | ;; arch-tag: 876831c9-a6f2-444a-b033-706e6fbc149f 10 | ;;; vt300.el ends here 11 | -------------------------------------------------------------------------------- /lisp/term/vt320.el: -------------------------------------------------------------------------------- 1 | ;; -*- no-byte-compile: t -*- 2 | (defun terminal-init-vt320 () 3 | "Terminal initialization function for vt320." 4 | (tty-run-terminal-initialization (selected-frame) "vt100") 5 | ;; Make F11 an escape key. 6 | (define-key input-decode-map "\e[23~" [f11]) ;Probably redundant. 7 | (define-key local-function-key-map [f11] [?\e])) 8 | 9 | ;; arch-tag: f9f4c954-0b9e-45f9-b450-a320d32abd9c 10 | ;;; vt320.el ends here 11 | -------------------------------------------------------------------------------- /lisp/term/vt400.el: -------------------------------------------------------------------------------- 1 | ;; -*- no-byte-compile: t -*- 2 | (defun terminal-init-vt400 () 3 | "Terminal initialization function for vt400." 4 | (tty-run-terminal-initialization (selected-frame) "vt100") 5 | ;; Make F11 an escape key. 6 | (define-key input-decode-map "\e[23~" [f11]) ;Probably redundant. 7 | (define-key local-function-key-map [f11] [?\e])) 8 | 9 | ;; arch-tag: a70809c5-6b21-42cc-ba20-536683e5e7d5 10 | ;;; vt400.el ends here 11 | -------------------------------------------------------------------------------- /lisp/term/vt420.el: -------------------------------------------------------------------------------- 1 | ;; -*- no-byte-compile: t -*- 2 | (defun terminal-init-vt420 () 3 | "Terminal initialization function for vt420." 4 | (tty-run-terminal-initialization (selected-frame) "vt100") 5 | ;; Make F11 an escape key. 6 | (define-key input-decode-map "\e[23~" [f11]) ;Probably redundant. 7 | (define-key local-function-key-map [f11] [?\e])) 8 | 9 | ;; arch-tag: df2f897c-3a12-4b3c-9259-df089f96c160 10 | ;;; vt420.el ends here 11 | -------------------------------------------------------------------------------- /etc/images/smilies/braindamaged.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * mad_xpm[] = { 3 | "13 14 3 1", 4 | " c None", 5 | ". c #000000", 6 | "+ c #FFDD00", 7 | " ....... ", 8 | " ..+++++.. ", 9 | " .+++++++++. ", 10 | ".++...++++++.", 11 | ".++.+.+...++.", 12 | ".++...+.+.++.", 13 | ".++++++...++.", 14 | ".+.+++++++.+.", 15 | ".+.+++++++.+.", 16 | ".++.+++++.++.", 17 | ".+++.....+++.", 18 | " .+++++++++. ", 19 | " ..+++++.. ", 20 | " ....... "}; 21 | -------------------------------------------------------------------------------- /etc/images/smilies/evil.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * diabolic_xpm[] = { 3 | "13 14 3 1", 4 | " c None", 5 | ". c #000000", 6 | "+ c #FFDD00", 7 | " ....... ", 8 | " ..+++++.. ", 9 | " .+++++++++. ", 10 | ".++.+++++.++.", 11 | ".++..+++..++.", 12 | ".++...+...++.", 13 | ".+++++++++++.", 14 | ".+.+++++++.+.", 15 | ".++.+++++.++.", 16 | ".+++.+++.+++.", 17 | ".++++...++++.", 18 | " .+++++++++. ", 19 | " ..+++++.. ", 20 | " ....... "}; 21 | -------------------------------------------------------------------------------- /etc/images/smilies/forced.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * forced_xpm[] = { 3 | "13 14 3 1", 4 | " c None", 5 | ". c #000000", 6 | "+ c #FFDD00", 7 | " ....... ", 8 | " ..+++++.. ", 9 | " .+++++++++. ", 10 | ".+++++++++++.", 11 | ".++..+++..++.", 12 | ".++..+++..++.", 13 | ".+++++++++++.", 14 | ".+++++++++++.", 15 | ".+.+++++++.+.", 16 | ".+.+++++++.+.", 17 | ".+.........+.", 18 | ".+++++++++++.", 19 | " ...+++++... ", 20 | " ....... "}; 21 | -------------------------------------------------------------------------------- /etc/images/tree-widget/default/end-guide.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * end_guide_xpm[] = { 3 | "6 21 2 1", 4 | " c None", 5 | ". c #ADA5C6", 6 | " .", 7 | " .", 8 | " .", 9 | " .", 10 | " .", 11 | " .", 12 | " .", 13 | " .", 14 | " .", 15 | " .", 16 | " .", 17 | " ", 18 | " ", 19 | " ", 20 | " ", 21 | " ", 22 | " ", 23 | " ", 24 | " ", 25 | " ", 26 | " "}; 27 | -------------------------------------------------------------------------------- /etc/charsets/IBM1004.map: -------------------------------------------------------------------------------- 1 | # Generated from IBM1004 in localedate/charmaps of glibc 2 | 0x00-0x7F 0x0000 3 | 0x82 0x201A 4 | 0x84 0x201E 5 | 0x85 0x2026 6 | 0x86-0x87 0x2020 7 | 0x88 0x02C6 8 | 0x89 0x2030 9 | 0x8A 0x0160 10 | 0x8B 0x2039 11 | 0x8C 0x0152 12 | 0x91-0x92 0x2018 13 | 0x93-0x94 0x201C 14 | 0x95 0x2022 15 | 0x96-0x97 0x2013 16 | 0x98 0x02DC 17 | 0x99 0x2122 18 | 0x9A 0x0161 19 | 0x9B 0x203A 20 | 0x9C 0x0153 21 | 0x9F 0x0178 22 | 0xA0-0xFF 0x00A0 23 | -------------------------------------------------------------------------------- /etc/images/smilies/indifferent.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * indifferent_xpm[] = { 3 | "13 14 3 1", 4 | " c None", 5 | ". c #000000", 6 | "+ c #FFDD00", 7 | " ....... ", 8 | " ..+++++.. ", 9 | " .+++++++++. ", 10 | ".+++++++++++.", 11 | ".++..+++..++.", 12 | ".++..+++..++.", 13 | ".+++++++++++.", 14 | ".+++++++++++.", 15 | ".+++++++++++.", 16 | ".++.......++.", 17 | ".+++++++++++.", 18 | " .+++++++++. ", 19 | " ..+++++.. ", 20 | " ....... "}; 21 | -------------------------------------------------------------------------------- /etc/images/tree-widget/folder/guide.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * guide_xpm[] = { 3 | "6 22 2 1", 4 | " c None", 5 | ". c #ADA5C6", 6 | " ", 7 | " .", 8 | " ", 9 | " .", 10 | " ", 11 | " .", 12 | " ", 13 | " .", 14 | " ", 15 | " .", 16 | " ", 17 | " .", 18 | " ", 19 | " .", 20 | " ", 21 | " .", 22 | " ", 23 | " .", 24 | " ", 25 | " .", 26 | " ", 27 | " ."}; 28 | -------------------------------------------------------------------------------- /lisp/obsolete/sc.el: -------------------------------------------------------------------------------- 1 | ;;; sc.el --- old name for supercite 2 | 3 | ;; Maintainer: FSF 4 | 5 | ;; This file is part of GNU Emacs. 6 | 7 | ;;; Commentary: 8 | 9 | ;; This file has been obsolete since Emacs 21.1. 10 | 11 | ;;; Code: 12 | 13 | (require 'supercite) 14 | (provide 'sc) 15 | 16 | (message "The name `sc' works but is obsolete; please use `supercite' instead") 17 | 18 | ;; arch-tag: 31e8ae19-689e-4b7d-9161-6d7dd60c6ece 19 | ;;; sc.el ends here 20 | -------------------------------------------------------------------------------- /etc/images/smilies/grin.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * grin_xpm[] = { 3 | "13 14 4 1", 4 | " c None", 5 | ". c #000000", 6 | "+ c #FFDD00", 7 | "@ c #FFFFFF", 8 | " ....... ", 9 | " ..+++++.. ", 10 | " .+++++++++. ", 11 | ".+++++++++++.", 12 | ".++..+++..++.", 13 | ".++..+++..++.", 14 | ".+++++++++++.", 15 | ".+.........+.", 16 | ".+.@@@@@@@.+.", 17 | ".++.@@@@@.++.", 18 | ".+++.....+++.", 19 | " .+++++++++. ", 20 | " ..+++++.. ", 21 | " ....... "}; 22 | -------------------------------------------------------------------------------- /etc/images/tree-widget/folder/end-guide.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * end_guide_xpm[] = { 3 | "6 22 2 1", 4 | " c None", 5 | ". c #ADA5C6", 6 | " ", 7 | " .", 8 | " ", 9 | " .", 10 | " ", 11 | " .", 12 | " ", 13 | " .", 14 | " ", 15 | " .", 16 | " ", 17 | " .", 18 | " ", 19 | " ", 20 | " ", 21 | " ", 22 | " ", 23 | " ", 24 | " ", 25 | " ", 26 | " ", 27 | " "}; 28 | -------------------------------------------------------------------------------- /src/.arch-inventory: -------------------------------------------------------------------------------- 1 | # Source files which don't match the usual naming conventions, mostly dot files 2 | source ^\.(gdbinit|dbxinit)$ 3 | 4 | # Auto-generated files, which ignore 5 | precious ^(config\.stamp|config\.h|epaths\.h|buildobj\.lst)$ 6 | precious ^(TAGS-LISP)$ 7 | precious ^(buildobj\.lst)$ 8 | 9 | backup ^(stamp-oldxmenu|prefix-args|temacs|emacs|emacs-[0-9.]*)$ 10 | backup ^(bootstrap-emacs)$ 11 | 12 | # arch-tag: 277cc7ae-b3f5-44af-abf1-84c073164543 13 | -------------------------------------------------------------------------------- /etc/images/custom/README: -------------------------------------------------------------------------------- 1 | This directory contains icons for the Customization user interface. 2 | Currently possible image file names that have no icons yet are 3 | radio0.xpm, radio1.xpm. 4 | 5 | COPYRIGHT AND LICENSE INFORMATION FOR IMAGE FILES 6 | 7 | Files: down.xpm down-pushed.xpm right.xpm right-pushed.xpm 8 | Author: Juri Linkov 9 | Copyright (C) 2008, 2009 Free Software Foundation, Inc. 10 | License: GNU General Public License version 3 or later (see COPYING) 11 | -------------------------------------------------------------------------------- /etc/schema/dbstart.rnc: -------------------------------------------------------------------------------- 1 | # This choice of root elements comes from the 1.0b1 RNG schema at 2 | # http://www.oasis-open.org/docbook/relaxng/1.0b1/index.shtml 3 | 4 | start = 5 | set 6 | | setindex 7 | | book 8 | | part 9 | | reference 10 | | preface 11 | | chapter 12 | | appendix 13 | | article 14 | | bibliography 15 | | glossary 16 | | index 17 | | refentry 18 | | sect1 19 | | sect2 20 | | sect3 21 | | sect4 22 | | sect5 23 | | section 24 | -------------------------------------------------------------------------------- /etc/schema/xhtml-link.rnc: -------------------------------------------------------------------------------- 1 | # Link Module 2 | 3 | link = element link { link.attlist } 4 | link.attlist = 5 | Common.attrib, 6 | attribute charset { Charset.datatype }?, 7 | attribute href { URI.datatype }?, 8 | attribute hreflang { LanguageCode.datatype }?, 9 | attribute type { ContentType.datatype }?, 10 | attribute rel { LinkTypes.datatype }?, 11 | attribute rev { LinkTypes.datatype }?, 12 | attribute media { MediaDesc.datatype }? 13 | head.content &= link* 14 | -------------------------------------------------------------------------------- /msdos/sed1x.inp: -------------------------------------------------------------------------------- 1 | # -sed1x.inp------------------------------------------------------------ 2 | # Extra configuration script for src/makefile for DesqView/X 3 | # ---------------------------------------------------------------------- 4 | s!^ cd \${oldXMenudir}; \${MAKE}.*$! ${MAKE} -C ${oldXMenudir}.! 5 | s!^ @true *$! @rem! 6 | s/DOC/DOC-X/g 7 | #/^LIBXMENU *=/s!= *!= ../oldxmenu/! 8 | /^temacs *:/s!OLDXMENU!LIBXMENU! 9 | 10 | # arch-tag: 3e8a78f2-3dec-44f3-81f6-3785a562da19 11 | -------------------------------------------------------------------------------- /etc/images/ezimage/bits.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * sb_obj_xpm[] = { 3 | "15 15 2 1", 4 | " c None", 5 | ". c #000CFF", 6 | " .. . .. . ", 7 | ". . . . . . ", 8 | ". . . . . . ", 9 | ". . . . . . ", 10 | " .. . .. . ", 11 | " ", 12 | ". .. . .. ", 13 | ". . . . . . ", 14 | ". . . . . . ", 15 | ". . . . . . ", 16 | ". .. . .. ", 17 | " ", 18 | " .. . .. . ", 19 | ". . . . . . ", 20 | ". . . . . . "}; 21 | -------------------------------------------------------------------------------- /etc/images/ezimage/checkmark.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * sb_chk_xpm[] = { 3 | "15 15 2 1", 4 | " c None", 5 | ". c #FF0000", 6 | " ", 7 | " . . .. ", 8 | " . . . ", 9 | " . . . . ", 10 | " . .. . ", 11 | " .. ", 12 | " .. ", 13 | " ... .. ", 14 | " ... .. ", 15 | " .... .. ", 16 | " ... .. ", 17 | " .... ", 18 | " ... ", 19 | " . ", 20 | " "}; 21 | -------------------------------------------------------------------------------- /etc/images/smilies/grayscale/dead.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * dead_xpm[] = { 3 | "14 14 4 1", 4 | " c None", 5 | ". c #737373", 6 | "+ c #ABABAB", 7 | "@ c #000000", 8 | " ", 9 | " ", 10 | " .+ +. + +. ", 11 | " +@+@++@+@+ ", 12 | " +@ @+ ", 13 | " +@+@ @+@+ ", 14 | " + +. + + ", 15 | " ", 16 | " +@ @+ ", 17 | " .@ @. ", 18 | " .@@@@. ", 19 | " ++++ ", 20 | " ", 21 | " "}; 22 | -------------------------------------------------------------------------------- /src/s/hpux11.h: -------------------------------------------------------------------------------- 1 | #include "hpux10-20.h" 2 | 3 | #ifdef POSIX_SIGNALS 4 | #undef POSIX_SIGNALS 5 | #endif 6 | #define POSIX_SIGNALS 1 7 | 8 | /* SA_RESTART resets the timeout of `select', so don't use it. */ 9 | #define BROKEN_SA_RESTART 10 | 11 | /* It does work on HPUX to open the pty's tty in the parent (Emacs), 12 | then close and reopen it in the child. */ 13 | #define USG_SUBTTY_WORKS 14 | 15 | /* arch-tag: f5a3d780-82cd-4a9a-832e-a4031aab788b 16 | (do not change this comment) */ 17 | -------------------------------------------------------------------------------- /etc/images/ezimage/bitsbang.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * sb_objod_xpm[] = { 3 | "15 15 3 1", 4 | " c None", 5 | ". c #000CFF", 6 | "+ c #FFFA00", 7 | " .. . .. . ", 8 | ". .++ . . . ", 9 | ". .++ . . . ", 10 | ". . ++. . . ", 11 | " .. ++ .. . ", 12 | " ++ ", 13 | ". ..++. .. ", 14 | ". . .++ . . ", 15 | ". . .++ . . ", 16 | ". . .++ . . ", 17 | ". .. . .. ", 18 | " ++ ", 19 | " .. . ++. . ", 20 | ". . . . . . ", 21 | ". . . . . . "}; 22 | -------------------------------------------------------------------------------- /etc/images/smilies/grayscale/sad.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * sad_xpm[] = { 3 | "14 14 5 1", 4 | " c None", 5 | ". c #484848", 6 | "+ c #000000", 7 | "@ c #ABABAB", 8 | "# c #6E6E6E", 9 | " ", 10 | " ", 11 | " . . ", 12 | " + + ", 13 | " + + ", 14 | " + + ", 15 | " ", 16 | " @@@@ ", 17 | " #++++# ", 18 | " .+@ @+. ", 19 | " @+@ @+@ ", 20 | " . . ", 21 | " ", 22 | " "}; 23 | -------------------------------------------------------------------------------- /etc/images/smilies/grayscale/frown.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * frown_xpm[] = { 3 | "14 14 5 1", 4 | " c None", 5 | ". c #6E6E6E", 6 | "+ c #484848", 7 | "@ c #ABABAB", 8 | "# c #000000", 9 | " ", 10 | " ", 11 | " .+ +. ", 12 | " @# #@ ", 13 | " #+ @+# ", 14 | " #+@@+# ", 15 | " ", 16 | " @@ ", 17 | " .####. ", 18 | " +#@ @#+ ", 19 | " @#@ @#@ ", 20 | " + + ", 21 | " ", 22 | " "}; 23 | -------------------------------------------------------------------------------- /etc/images/smilies/grayscale/smile.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * smile_xpm[] = { 3 | "14 14 5 1", 4 | " c None", 5 | ". c #484848", 6 | "+ c #000000", 7 | "@ c #ABABAB", 8 | "# c #737373", 9 | " ", 10 | " ", 11 | " . . ", 12 | " + + ", 13 | " + + ", 14 | " + + ", 15 | " ", 16 | " + + ", 17 | " @+ +@ ", 18 | " #+ +# ", 19 | " #++++# ", 20 | " @@@@ ", 21 | " ", 22 | " "}; 23 | -------------------------------------------------------------------------------- /etc/images/tree-widget/default/no-handle.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * no_handle_xpm[] = { 3 | "10 21 1 1", 4 | " c None", 5 | " ", 6 | " ", 7 | " ", 8 | " ", 9 | " ", 10 | " ", 11 | " ", 12 | " ", 13 | " ", 14 | " ", 15 | " ", 16 | " ", 17 | " ", 18 | " ", 19 | " ", 20 | " ", 21 | " ", 22 | " ", 23 | " ", 24 | " ", 25 | " "}; 26 | -------------------------------------------------------------------------------- /nt/emacs.manifest: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /etc/charsets/CP1252.map: -------------------------------------------------------------------------------- 1 | # Generated from CP1252 in localedate/charmaps of glibc 2 | 0x00-0x7F 0x0000 3 | 0x80 0x20AC 4 | 0x82 0x201A 5 | 0x83 0x0192 6 | 0x84 0x201E 7 | 0x85 0x2026 8 | 0x86-0x87 0x2020 9 | 0x88 0x02C6 10 | 0x89 0x2030 11 | 0x8A 0x0160 12 | 0x8B 0x2039 13 | 0x8C 0x0152 14 | 0x8E 0x017D 15 | 0x91-0x92 0x2018 16 | 0x93-0x94 0x201C 17 | 0x95 0x2022 18 | 0x96-0x97 0x2013 19 | 0x98 0x02DC 20 | 0x99 0x2122 21 | 0x9A 0x0161 22 | 0x9B 0x203A 23 | 0x9C 0x0153 24 | 0x9E 0x017E 25 | 0x9F 0x0178 26 | 0xA0-0xFF 0x00A0 27 | -------------------------------------------------------------------------------- /etc/images/smilies/grayscale/cry.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * cry_xpm[] = { 3 | "14 14 6 1", 4 | " c None", 5 | ". c #484848", 6 | "+ c #000000", 7 | "@ c #ABABAB", 8 | "# c #515151", 9 | "$ c #6E6E6E", 10 | " ", 11 | " ", 12 | " . ", 13 | " .. .+. ", 14 | " +++. +.+ ", 15 | " +@+ ", 16 | " @+# ", 17 | " @@ ", 18 | " $++++$ ", 19 | " .+@ @+. ", 20 | " @+@ @+@ ", 21 | " @ @ ", 22 | " ", 23 | " "}; 24 | -------------------------------------------------------------------------------- /etc/images/smilies/grayscale/reverse-smile.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * reverse_smile_xpm[] = { 3 | "14 14 5 1", 4 | " c None", 5 | ". c #ABABAB", 6 | "+ c #737373", 7 | "@ c #000000", 8 | "# c #484848", 9 | " ", 10 | " ", 11 | " .... ", 12 | " +@@@@+ ", 13 | " +@ @+ ", 14 | " .@ @. ", 15 | " @ @ ", 16 | " ", 17 | " @ @ ", 18 | " @ @ ", 19 | " @ @ ", 20 | " # # ", 21 | " ", 22 | " "}; 23 | -------------------------------------------------------------------------------- /etc/images/smilies/grayscale/wry.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * wry_xpm[] = { 3 | "14 14 6 1", 4 | " c None", 5 | ". c #484848", 6 | "+ c #000000", 7 | "@ c #515151", 8 | "# c #ABABAB", 9 | "$ c #6E6E6E", 10 | " ", 11 | " ", 12 | " . . ", 13 | " + + ", 14 | " + + ", 15 | " + + ", 16 | " ", 17 | " @ ", 18 | " ## $@ ", 19 | " #++++++# ", 20 | " @$ ## ", 21 | " @ ", 22 | " ", 23 | " "}; 24 | -------------------------------------------------------------------------------- /etc/images/smilies/grayscale/evil.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * evil_xpm[] = { 3 | "14 14 6 1", 4 | " c None", 5 | ". c #6E6E6E", 6 | "+ c #484848", 7 | "@ c #ABABAB", 8 | "# c #000000", 9 | "$ c #737373", 10 | " ", 11 | " ", 12 | " .+ +. ", 13 | " @# #@ ", 14 | " #+ @+# ", 15 | " #+ @+# ", 16 | " ", 17 | " # # ", 18 | " @# #@ ", 19 | " $# #$ ", 20 | " $####$ ", 21 | " @@@@ ", 22 | " ", 23 | " "}; 24 | -------------------------------------------------------------------------------- /etc/images/tree-widget/default/handle.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * handle_xpm[] = { 3 | "10 21 2 1", 4 | " c None", 5 | ". c #ADA5C6", 6 | " ", 7 | " ", 8 | " ", 9 | " ", 10 | " ", 11 | " ", 12 | " ", 13 | " ", 14 | " ", 15 | " ", 16 | "..........", 17 | " ", 18 | " ", 19 | " ", 20 | " ", 21 | " ", 22 | " ", 23 | " ", 24 | " ", 25 | " ", 26 | " "}; 27 | -------------------------------------------------------------------------------- /etc/images/smilies/grayscale/forced.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * forced_xpm[] = { 3 | "14 14 6 1", 4 | " c None", 5 | ". c #484848", 6 | "+ c #000000", 7 | "@ c #6E6E6E", 8 | "# c #ABABAB", 9 | "$ c #171717", 10 | " ", 11 | " ", 12 | " . . ", 13 | " + + ", 14 | " + + ", 15 | " + + ", 16 | " ", 17 | " @ @ ", 18 | " +# #+ ", 19 | " @@# #@@ ", 20 | " #$++++++$# ", 21 | " ######## ", 22 | " ", 23 | " "}; 24 | -------------------------------------------------------------------------------- /etc/images/tree-widget/folder/no-handle.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * no_handle_xpm[] = { 3 | "10 22 1 1", 4 | " c None", 5 | " ", 6 | " ", 7 | " ", 8 | " ", 9 | " ", 10 | " ", 11 | " ", 12 | " ", 13 | " ", 14 | " ", 15 | " ", 16 | " ", 17 | " ", 18 | " ", 19 | " ", 20 | " ", 21 | " ", 22 | " ", 23 | " ", 24 | " ", 25 | " ", 26 | " "}; 27 | -------------------------------------------------------------------------------- /etc/images/ezimage/doc.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * sb_doc_xpm[] = { 3 | "15 15 5 1", 4 | " c None", 5 | ". c #828282", 6 | "+ c #000000", 7 | "@ c #5A818B", 8 | "# c #FFFFFF", 9 | " ....... ", 10 | " .+++++++. ", 11 | " .+@@@@@@+. ", 12 | " .+@@@@@@+#. ", 13 | " .+@@@@@@+#+.", 14 | " .+@@@@@@+##+.", 15 | " .+@@@@@@@+#+. ", 16 | " .+@@@@@@+##+. ", 17 | ".++++@@@@+#+. ", 18 | ".+###++++##+. ", 19 | ".+########+. ", 20 | ".+########+. ", 21 | ".++++++##+. ", 22 | " ......+++. ", 23 | " ... "}; 24 | -------------------------------------------------------------------------------- /etc/images/smilies/README: -------------------------------------------------------------------------------- 1 | Files: blink.pbm blink.xpm braindamaged.xpm cry.xpm dead.xpm evil.xpm 2 | forced.xpm frown.pbm frown.xpm grin.xpm indifferent.xpm sad.pbm 3 | sad.xpm smile.pbm smile.xpm wry.pbm wry.xpm 4 | Authors: Reiner Steib, Simon Josefsson, Kai Grossjohann, Alex 5 | Schroeder, Oliver Scholz, Per Abrahamsen, Kim F. Storm. 6 | Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 7 | Free Software Foundation, Inc. 8 | License: GNU General Public License version 3 or later (see COPYING) 9 | -------------------------------------------------------------------------------- /etc/images/tree-widget/default/README: -------------------------------------------------------------------------------- 1 | COPYRIGHT AND LICENSE INFORMATION FOR IMAGE FILES 2 | 3 | Files: close.png close.xpm empty.png empty.xpm end-guide.png end-guide.xpm 4 | guide.png guide.xpm handle.png handle.xpm leaf.png leaf.xpm 5 | no-guide.png no-guide.xpm no-handle.png no-handle.xpm open.png 6 | open.xpm 7 | Author: David Ponce 8 | Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc. 9 | License: GNU General Public License version 3 or later (see COPYING) 10 | -------------------------------------------------------------------------------- /etc/schema/xhtml-attribs.rnc: -------------------------------------------------------------------------------- 1 | # Common Attributes Module 2 | 3 | id.attrib = attribute id { ID.datatype }? 4 | class.attrib = attribute class { NMTOKENS.datatype }? 5 | title.attrib = attribute title { Text.datatype }? 6 | Core.attrib = id.attrib, class.attrib, title.attrib 7 | lang.attrib = attribute xml:lang { LanguageCode.datatype }? 8 | I18n.attrib = lang.attrib 9 | Common.attrib = Core.attrib, I18n.attrib 10 | CommonIdRequired.attrib = 11 | attribute id { ID.datatype }, 12 | class.attrib, 13 | title.attrib, 14 | I18n.attrib 15 | -------------------------------------------------------------------------------- /etc/images/smilies/grayscale/braindamaged.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * braindamaged_xpm[] = { 3 | "14 14 6 1", 4 | " c None", 5 | ". c #ABABAB", 6 | "+ c #000000", 7 | "@ c #515151", 8 | "# c #171717", 9 | "$ c #737373", 10 | " ", 11 | " ", 12 | " .++..++. ", 13 | " +@.++.@+ ", 14 | " +.@#@@.+ ", 15 | " +@.#@.@+ ", 16 | " .++. ++. ", 17 | " + + ", 18 | " .+ +. ", 19 | " $+ +$ ", 20 | " $++++$ ", 21 | " .... ", 22 | " ", 23 | " "}; 24 | -------------------------------------------------------------------------------- /etc/images/smilies/grayscale/indifferent.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * indifferent_xpm[] = { 3 | "14 14 6 1", 4 | " c None", 5 | ". c #484848", 6 | "+ c #000000", 7 | "@ c #515151", 8 | "# c #ABABAB", 9 | "$ c #6E6E6E", 10 | " ", 11 | " ", 12 | " . . ", 13 | " + + ", 14 | " + + ", 15 | " + + ", 16 | " ", 17 | " @ #@ ", 18 | "#+$+$ $ + ", 19 | "$ +#+$#++$+$ ", 20 | " $ ++# ++ ", 21 | " + ", 22 | " ", 23 | " "}; 24 | -------------------------------------------------------------------------------- /etc/images/tree-widget/folder/README: -------------------------------------------------------------------------------- 1 | COPYRIGHT AND LICENSE INFORMATION FOR IMAGE FILES 2 | 3 | Files: close.png close.xpm empty.png empty.xpm end-guide.png 4 | end-guide.xpm guide.png guide.xpm handle.png handle.xpm 5 | leaf.png leaf.xpm no-guide.png no-guide.xpm no-handle.png 6 | no-handle.xpm open.png open.xpm 7 | Author: David Ponce 8 | Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc. 9 | License: GNU General Public License version 3 or later (see COPYING) 10 | -------------------------------------------------------------------------------- /etc/nxml/02440-0245F.el: -------------------------------------------------------------------------------- 1 | (nxml-define-char-name-set 'optical-character-recognition 2 | '(("OCR HOOK" #x2440) 3 | ("OCR CHAIR" #x2441) 4 | ("OCR FORK" #x2442) 5 | ("OCR INVERTED FORK" #x2443) 6 | ("OCR BELT BUCKLE" #x2444) 7 | ("OCR BOW TIE" #x2445) 8 | ("OCR BRANCH BANK IDENTIFICATION" #x2446) 9 | ("OCR AMOUNT OF CHECK" #x2447) 10 | ("OCR DASH" #x2448) 11 | ("OCR CUSTOMER ACCOUNT NUMBER" #x2449) 12 | ("OCR DOUBLE BACKSLASH" #x244A) 13 | )) 14 | 15 | ;; arch-tag: e532db31-38fd-4eee-8e47-974316fb6dd5 16 | -------------------------------------------------------------------------------- /etc/schema/xhtml-iframe.rnc: -------------------------------------------------------------------------------- 1 | # Iframe Module 2 | 3 | iframe = element iframe { iframe.attlist, Flow.model } 4 | iframe.attlist = 5 | Core.attrib, 6 | attribute longdesc { URI.datatype }?, 7 | attribute src { URI.datatype }?, 8 | attribute frameborder { "1" | "0" }?, 9 | attribute width { Length.datatype }?, 10 | attribute height { Length.datatype }?, 11 | attribute marginwidth { Pixels.datatype }?, 12 | attribute marginheight { Pixels.datatype }?, 13 | attribute scrolling { "yes" | "no" | "auto" }? 14 | Inline.class |= iframe 15 | -------------------------------------------------------------------------------- /src/pre-crt0.c: -------------------------------------------------------------------------------- 1 | /* This file is loaded before crt0.o on machines where we do not 2 | remap part of the data space into text space in unexec. 3 | On these machines, there is no problem with standard crt0.o's 4 | that make environ an initialized variable. However, we do 5 | need to make sure the label data_start exists anyway. */ 6 | 7 | /* Create a label to appear at the beginning of data space. */ 8 | 9 | int data_start = 0; 10 | 11 | /* arch-tag: 2e260272-0790-495f-9362-55abd56b5c5a 12 | (do not change this comment) */ 13 | -------------------------------------------------------------------------------- /etc/images/ezimage/doc-minus.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * sb_doc_minus_xpm[] = { 3 | "15 15 5 1", 4 | " c None", 5 | ". c #828282", 6 | "+ c #000000", 7 | "@ c #5A818B", 8 | "# c #FFFFFF", 9 | " ....... ", 10 | " .+++++++. ", 11 | " .+@@@@@@+. ", 12 | " .+@@@@@@+#. ", 13 | " .+@@@@@@+#+.", 14 | " .+@####@+##+.", 15 | " .+@@@@@@@+#+. ", 16 | " .+@@@@@@+##+. ", 17 | ".++++@@@@+#+. ", 18 | ".+###++++##+. ", 19 | ".+########+. ", 20 | ".++#######+. ", 21 | " ..++++##+. ", 22 | " ....+++. ", 23 | " ... "}; 24 | -------------------------------------------------------------------------------- /etc/images/ezimage/doc-plus.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * sb_doc_plus_xpm[] = { 3 | "15 15 5 1", 4 | " c None", 5 | ". c #828282", 6 | "+ c #000000", 7 | "@ c #5A818B", 8 | "# c #FFFFFF", 9 | " ....... ", 10 | " .+++++++. ", 11 | " .+@@@@@@+. ", 12 | " .+@@#@@@+#. ", 13 | " .+@@#@@@+#+.", 14 | " .+@#####+##+.", 15 | " .+@@@@#@@+#+. ", 16 | " .+@@@@#@+##+. ", 17 | ".++++@@@@+#+. ", 18 | ".+###++++##+. ", 19 | ".+########+. ", 20 | ".++#######+. ", 21 | " ..++++##+. ", 22 | " ....+++. ", 23 | " ... "}; 24 | -------------------------------------------------------------------------------- /etc/images/smilies/grayscale/blink.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * blink_xpm[] = { 3 | "14 14 7 1", 4 | " c None", 5 | ". c #484848", 6 | "+ c #000000", 7 | "@ c #6E6E6E", 8 | "# c #515151", 9 | "$ c #ABABAB", 10 | "% c #737373", 11 | " ", 12 | " ", 13 | " . ", 14 | " + ", 15 | " @#$$# + ", 16 | " ++ + ", 17 | " ", 18 | " + + ", 19 | " $+ +$ ", 20 | " %+ +% ", 21 | " %++++% ", 22 | " $$$$ ", 23 | " ", 24 | " "}; 25 | -------------------------------------------------------------------------------- /etc/images/tree-widget/folder/handle.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * handle_xpm[] = { 3 | "10 22 2 1", 4 | " c None", 5 | ". c #ADA5C6", 6 | " ", 7 | " ", 8 | " ", 9 | " ", 10 | " ", 11 | " ", 12 | " ", 13 | " ", 14 | " ", 15 | " ", 16 | " ", 17 | " . . . . .", 18 | " ", 19 | " ", 20 | " ", 21 | " ", 22 | " ", 23 | " ", 24 | " ", 25 | " ", 26 | " ", 27 | " "}; 28 | -------------------------------------------------------------------------------- /etc/schema/xhtml-applet.rnc: -------------------------------------------------------------------------------- 1 | # Applet Module 2 | 3 | applet = 4 | element applet { 5 | applet.attlist, 6 | # No restrictions on mixed content in TREX. 7 | param*, 8 | Flow.model 9 | } 10 | applet.attlist = 11 | Core.attrib, 12 | attribute alt { Text.datatype }, 13 | attribute archive { text }?, 14 | attribute code { text }?, 15 | attribute codebase { URI.datatype }?, 16 | attribute object { text }?, 17 | attribute height { Length.datatype }, 18 | attribute width { Length.datatype } 19 | Inline.class |= applet 20 | -------------------------------------------------------------------------------- /etc/images/ezimage/key.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * key_xpm[] = { 3 | "16 16 4 1", 4 | " c None", 5 | ". c #828282", 6 | "+ c #000000", 7 | "@ c #FFF993", 8 | " ........ ", 9 | " ..++++++.. ", 10 | " .+@@@@@@+. ", 11 | " .+@@++@@+. ", 12 | " .+@@@@@@+. ", 13 | " .+@@@@@@+. ", 14 | " .+@@@@@@+. ", 15 | " .+@@@@+. ", 16 | " .+@@+. ", 17 | " .+@@@+. ", 18 | " .+@@+. ", 19 | " .+@@+. ", 20 | " .+@@@+. ", 21 | " .+@@+. ", 22 | " .++. ", 23 | " .. "}; 24 | -------------------------------------------------------------------------------- /etc/images/ezimage/lock.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * lock_xpm[] = { 3 | "16 16 4 1", 4 | " c None", 5 | ". c #828282", 6 | "+ c #000000", 7 | "@ c #FFF993", 8 | " ........ ", 9 | " ..++++++.. ", 10 | " .++....++. ", 11 | " .+......+. ", 12 | " ..+......+.. ", 13 | " ..++++++++++..", 14 | " .++@@@@@@@@++.", 15 | " .+@@@@@@@@@@+.", 16 | " .+@@@@@@@@@@+.", 17 | " .+@@@++++@@@+.", 18 | " .+@@@@++@@@@+.", 19 | " .+@@@@@@@@@@+.", 20 | " .+@@@@++@@@@+.", 21 | " .+@@@@@@@@@@+.", 22 | " .++++++++++++.", 23 | " .............."}; 24 | -------------------------------------------------------------------------------- /etc/images/ezimage/unlock.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * unlock_xpm[] = { 3 | "16 16 4 1", 4 | " c None", 5 | ". c #828282", 6 | "+ c #000000", 7 | "@ c #FFF993", 8 | " ....... ", 9 | "..+++++.. ", 10 | ".++...++. ", 11 | ".+.....+. ", 12 | ".+.....+........", 13 | "....++++++++++..", 14 | " .++@@@@@@@@++.", 15 | " .+@@@@@@@@@@+.", 16 | " .+@@@@@@@@@@+.", 17 | " .+@@@++++@@@+.", 18 | " .+@@@@++@@@@+.", 19 | " .+@@@@@@@@@@+.", 20 | " .+@@@@++@@@@+.", 21 | " .+@@@@@@@@@@+.", 22 | " .++++++++++++.", 23 | " .............."}; 24 | -------------------------------------------------------------------------------- /etc/images/low-color/README: -------------------------------------------------------------------------------- 1 | COPYRIGHT AND LICENSE INFORMATION FOR IMAGE FILES 2 | 3 | The files: 4 | 5 | back-arrow.xpm copy.xpm cut.xpm fwd-arrow.xpm help.xpm home.xpm 6 | index.xpm jump-to.xpm left-arrow.xpm new.xpm next-node.xpm 7 | open.xpm paste.xpm preferences.xpm prev-node.xpm print.xpm 8 | right-arrow.xpm save.xpm saveas.xpm search.xpm spell.xpm 9 | undo.xpm up-arrow.xpm up-node.xpm 10 | 11 | are low-color versions of those with the same name in the parent 12 | directory. See the README file in that directory for the relevant 13 | legal information. 14 | -------------------------------------------------------------------------------- /etc/schema/xhtml-lst.rnc: -------------------------------------------------------------------------------- 1 | # List Module 2 | 3 | dl = element dl { dl.attlist, (dt | dd)+ } 4 | dl.attlist = Common.attrib 5 | dt = element dt { dt.attlist, Inline.model } 6 | dt.attlist = Common.attrib 7 | dd = element dd { dd.attlist, Flow.model } 8 | dd.attlist = Common.attrib 9 | ol = element ol { ol.attlist, li+ } 10 | ol.attlist = Common.attrib 11 | ul = element ul { ul.attlist, li+ } 12 | ul.attlist = Common.attrib 13 | li = element li { li.attlist, Flow.model } 14 | li.attlist = Common.attrib 15 | List.class = ul | ol | dl 16 | Block.class |= List.class 17 | -------------------------------------------------------------------------------- /etc/images/smilies/grayscale/grin.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * grin_xpm[] = { 3 | "14 14 8 1", 4 | " c None", 5 | ". c #484848", 6 | "+ c #000000", 7 | "@ c #515151", 8 | "# c #6E6E6E", 9 | "$ c #ABABAB", 10 | "% c #FFFFFF", 11 | "& c #737373", 12 | " ", 13 | " ", 14 | " . . ", 15 | " + + ", 16 | " + + ", 17 | " + + ", 18 | " ", 19 | " ++@@##@@++ ", 20 | " $+%%%%%%+$ ", 21 | " &+%%%%+& ", 22 | " &++++& ", 23 | " $$$$ ", 24 | " ", 25 | " "}; 26 | -------------------------------------------------------------------------------- /etc/schema/xhtml-script.rnc: -------------------------------------------------------------------------------- 1 | # Script Module 2 | 3 | script = element script { script.attlist, text } 4 | script.attlist = 5 | attribute charset { Charset.datatype }?, 6 | attribute type { ContentType.datatype }, 7 | attribute src { URI.datatype }?, 8 | attribute defer { "defer" }?, 9 | attribute xml:space { "preserve" }? 10 | noscript = element noscript { noscript.attlist, Block.model } 11 | noscript.attlist = Common.attrib 12 | head.content &= script* 13 | Script.class = noscript | script 14 | Inline.class |= Script.class 15 | Block.class |= Script.class 16 | -------------------------------------------------------------------------------- /etc/charsets/KA-ACADEMY.map: -------------------------------------------------------------------------------- 1 | # Generated from GEORGIAN-ACADEMY in localedate/charmaps of glibc 2 | 0x00-0x81 0x0000 3 | 0x82 0x201A 4 | 0x83 0x0192 5 | 0x84 0x201E 6 | 0x85 0x2026 7 | 0x86-0x87 0x2020 8 | 0x88 0x02C6 9 | 0x89 0x2030 10 | 0x8A 0x0160 11 | 0x8B 0x2039 12 | 0x8C 0x0152 13 | 0x8D-0x90 0x008D 14 | 0x91-0x92 0x2018 15 | 0x93-0x94 0x201C 16 | 0x95 0x2022 17 | 0x96-0x97 0x2013 18 | 0x98 0x02DC 19 | 0x99 0x2122 20 | 0x9A 0x0161 21 | 0x9B 0x203A 22 | 0x9C 0x0153 23 | 0x9D-0x9E 0x009D 24 | 0x9F 0x0178 25 | 0xA0-0xBF 0x00A0 26 | 0xC0-0xE6 0x10D0 27 | 0xE7-0xFF 0x00E7 28 | -------------------------------------------------------------------------------- /etc/schema/xhtml-hypertext.rnc: -------------------------------------------------------------------------------- 1 | # Hypertext Module 2 | 3 | # Depends on text module. 4 | 5 | a = element a { a.attlist, Inline.model } 6 | a.attlist = 7 | Common.attrib, 8 | attribute href { URI.datatype }?, 9 | attribute charset { Charset.datatype }?, 10 | attribute type { ContentType.datatype }?, 11 | attribute hreflang { LanguageCode.datatype }?, 12 | attribute rel { LinkTypes.datatype }?, 13 | attribute rev { LinkTypes.datatype }?, 14 | attribute accesskey { Character.datatype }?, 15 | attribute tabindex { Number.datatype }? 16 | Inline.class |= a 17 | -------------------------------------------------------------------------------- /lisp/term/vt200.el: -------------------------------------------------------------------------------- 1 | ;; -*- no-byte-compile: t -*- 2 | ;; For our purposes we can treat the vt200 and vt100 almost alike. 3 | ;; Most differences are handled by the termcap entry. 4 | (defun terminal-init-vt200 () 5 | "Terminal initialization function for vt200." 6 | (tty-run-terminal-initialization (selected-frame) "vt100") 7 | ;; Make F11 an escape key. 8 | (define-key input-decode-map "\e[23~" [f11]) ;Probably redundant. 9 | (define-key local-function-key-map [f11] [?\e])) 10 | 11 | ;; arch-tag: 0f78f583-9f32-4237-b106-28bcfff21d89 12 | ;;; vt200.el ends here 13 | -------------------------------------------------------------------------------- /lisp/term/vt201.el: -------------------------------------------------------------------------------- 1 | ;; -*- no-byte-compile: t -*- 2 | ;; For our purposes we can treat the vt200 and vt100 almost alike. 3 | ;; Most differences are handled by the termcap entry. 4 | (defun terminal-init-vt201 () 5 | "Terminal initialization function for vt201." 6 | (tty-run-terminal-initialization (selected-frame) "vt100") 7 | ;; Make F11 an escape key. 8 | (define-key input-decode-map "\e[23~" [f11]) ;Probably redundant. 9 | (define-key local-function-key-map [f11] [?\e])) 10 | 11 | ;; arch-tag: a6abb38f-60ea-449e-a9e9-3fb8572c52ae 12 | ;;; vt201.el ends here 13 | -------------------------------------------------------------------------------- /lisp/term/vt220.el: -------------------------------------------------------------------------------- 1 | ;; -*- no-byte-compile: t -*- 2 | ;; For our purposes we can treat the vt200 and vt100 almost alike. 3 | ;; Most differences are handled by the termcap entry. 4 | (defun terminal-init-vt220 () 5 | "Terminal initialization function for vt220." 6 | (tty-run-terminal-initialization (selected-frame) "vt100") 7 | ;; Make F11 an escape key. 8 | (define-key input-decode-map "\e[23~" [f11]) ;Probably redundant. 9 | (define-key local-function-key-map [f11] [?\e])) 10 | 11 | ;; arch-tag: 98fc4867-a20d-46a1-a276-d7be31e49871 12 | ;;; vt220.el ends here 13 | -------------------------------------------------------------------------------- /lisp/term/vt240.el: -------------------------------------------------------------------------------- 1 | ;; -*- no-byte-compile: t -*- 2 | ;; For our purposes we can treat the vt200 and vt100 almost alike. 3 | ;; Most differences are handled by the termcap entry. 4 | (defun terminal-init-vt240 () 5 | "Terminal initialization function for vt240." 6 | (tty-run-terminal-initialization (selected-frame) "vt100") 7 | ;; Make F11 an escape key. 8 | (define-key input-decode-map "\e[23~" [f11]) ;Probably redundant. 9 | (define-key local-function-key-map [f11] [?\e])) 10 | 11 | ;; arch-tag: d9f88e9c-02dc-49ff-871c-a415f08e4eb7 12 | ;;; vt240.el ends here 13 | -------------------------------------------------------------------------------- /lwlib/README: -------------------------------------------------------------------------------- 1 | This subdirectory contains the Lucid Widget Library (lwlib), which 2 | provides a uniform interface to a few different X toolkits. The 3 | library was written by Lucid, Inc and released under the terms of the 4 | GPL version 1 (or later). It is not considered part of GNU Emacs. 5 | 6 | This version of the library differs from the original as described in 7 | the ChangeLog file. For example, the file "lwlib-int.h" was renamed 8 | from "lwlib-internal.h" in order to fit in 14 characters, and the 9 | makefile adjusted to fit in with Emacs's configure script. 10 | -------------------------------------------------------------------------------- /etc/forms-d2.dat: -------------------------------------------------------------------------------- 1 | comp.sources.unix v11i008 269 getty-enable 1 tron@sc.nsc.com (Ronald S. Karr) Getty on/off programs for 4.[23] BSD 890505 This program can be used to dynamically enable / disable terminal lines on a BSD system. 2 | comp.sources.unix 11 v11i022 283 syslog 1 emory!arnold (Arnold D. Robbins {EUCC}) Development version of syslog(3), for ATT, too 28/08/1987 3 | comp.sources.unix 11 v11i033 290 less3 3 sun!intsc!convgt!mark The 'less' pager 02/09/1987 4 | comp.sources.unix 11 v11i036 293 test.el 3 "Mark A. Ardis" Test system for GNU Emacs 10/09/1987 5 | -------------------------------------------------------------------------------- /etc/ORDERS: -------------------------------------------------------------------------------- 1 | Printed copies of the GNU Emacs Manual, the Emacs Lisp Reference 2 | Manual, "Programming in Emacs Lisp: An Introduction", and other 3 | materials can be ordered directly from the Free Software Foundation. 4 | 5 | For more information, see the online store at . 6 | 7 | Your purchases will help support further development of Emacs and 8 | other free software programs. 9 | 10 | You can also make tax-deductible donations to the Free Software 11 | Foundation, a not-for-profit organization (assuming you pay US taxes) 12 | - see . 13 | -------------------------------------------------------------------------------- /etc/images/ezimage/box.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * sb_box_xpm[] = { 3 | "20 15 4 1", 4 | " c None", 5 | ". c #828282", 6 | "+ c #000000", 7 | "@ c #FFF993", 8 | " ", 9 | " ............... ", 10 | " .++++++++++++++. ", 11 | " .++@@@@@@+@@@@@+. ", 12 | " .+@+@@@@@@+@@@@@+. ", 13 | " .+@@++++++++++++++.", 14 | " .+@@+@@@@@@@@@@@@+.", 15 | " .+@@+@@@@@@@@@@@@+.", 16 | " .+@@+@@@@@@@@@@@@+.", 17 | " .+@@+@@@@@@@@@@@@+.", 18 | " .+@@+@@@@@@@@@@@@+.", 19 | " .+@+@@@@@@@@@@@@+.", 20 | ". .++@@@@@@@@@@@@+.", 21 | " .++++++++++++++.", 22 | " .............. "}; 23 | -------------------------------------------------------------------------------- /etc/images/ezimage/mail.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * sb_mail_xpm[] = { 3 | "20 15 4 1", 4 | " c None", 5 | ". c #828282", 6 | "+ c #000000", 7 | "@ c #FFFFFF", 8 | "................... ", 9 | ".++++++++++++++++++.", 10 | ".++@@@@@@@@@@@@@@++.", 11 | ".+@++@@@@@@@@@@++@+.", 12 | ".+@@@++@@@@@@++@@@+.", 13 | ".+@@@@@++@@++@@@@@+.", 14 | ".+@@@@@@@++@@@@@@@+.", 15 | ".+@@@@@@@@@@@@@@@@+.", 16 | ".+@@@@+@@@@@@+@@@@+.", 17 | ".+@@@@@@@@@@@@@@@@+.", 18 | ".+@@+@@@@@@@@@@+@@+.", 19 | ".+@@@@@@@@@@@@@@@@+.", 20 | ".++@@@@@@@@@@@@@@++.", 21 | ".++++++++++++++++++.", 22 | " .................. "}; 23 | -------------------------------------------------------------------------------- /etc/images/ezimage/tag-v.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * sb_tag_v_xpm[] = { 3 | "20 15 4 1", 4 | " c None", 5 | ". c #828282", 6 | "+ c #000000", 7 | "@ c #FFF993", 8 | " ", 9 | " ", 10 | " ............... ", 11 | " .+++++++++++++++.", 12 | " .+@@@@@@@@@@@@@@+.", 13 | " .+@@@++++++++++.@+.", 14 | ".+@@@@@++++++++.@@+.", 15 | ".+@++@@@++++++.@@@+.", 16 | ".+@++@@@@++++.@@@@+.", 17 | ".+@@@@@@@@++.@@@@@+.", 18 | " .+@@@@@@@@.@@@@@@+.", 19 | " .+@@@@@@@@@@@@@@+.", 20 | ". .+++++++++++++++.", 21 | " ............... ", 22 | " "}; 23 | -------------------------------------------------------------------------------- /etc/images/ezimage/tag.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * sb_tag_xpm[] = { 3 | "20 15 4 1", 4 | " c None", 5 | ". c #828282", 6 | "+ c #000000", 7 | "@ c #FFF993", 8 | " ", 9 | " ", 10 | " ............... ", 11 | " .+++++++++++++++.", 12 | " .+@@@@@@@@@@@@@@+.", 13 | " .+@@@@@@@@@@@@@@@+.", 14 | ".+@@@@@@@@@@@@@@@@+.", 15 | ".+@++@@@@@@@@@@@@@+.", 16 | ".+@++@@@@@@@@@@@@@+.", 17 | ".+@@@@@@@@@@@@@@@@+.", 18 | " .+@@@@@@@@@@@@@@@+.", 19 | " .+@@@@@@@@@@@@@@+.", 20 | ". .+++++++++++++++.", 21 | " ............... ", 22 | " "}; 23 | -------------------------------------------------------------------------------- /etc/images/gnus/gnus-pointer.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char *gnus-pointer[] = { 3 | /* width height num_colors chars_per_pixel */ 4 | " 18 13 2 1", 5 | /* colors */ 6 | ". c #0000ff", 7 | "# c None s None", 8 | /* pixels */ 9 | "##################", 10 | "######..##..######", 11 | "#####........#####", 12 | "#.##.##..##...####", 13 | "#...####.###...##.", 14 | "#..###.######.....", 15 | "#####.########...#", 16 | "###########.######", 17 | "####.###.#..######", 18 | "######..###.######", 19 | "###....####.######", 20 | "###..######.######", 21 | "###########.######" 22 | }; -------------------------------------------------------------------------------- /etc/schema/xhtml-struct.rnc: -------------------------------------------------------------------------------- 1 | # Structure Module 2 | 3 | start = html 4 | title = element title { title.attlist, text } 5 | title.attlist = I18n.attrib 6 | head = element head { head.attlist, head.content } 7 | head.attlist = I18n.attrib, profile.attlist 8 | head.content = title 9 | profile.attlist = attribute profile { URI.datatype }? 10 | body = element body { body.attlist, Block.model } 11 | body.attlist = Common.attrib 12 | html = element html { html.attlist, head, body } 13 | html.attlist = XHTML.version.attrib, I18n.attrib 14 | XHTML.version.attrib = attribute version { FPI.datatype }? 15 | -------------------------------------------------------------------------------- /etc/images/ezimage/tag-gt.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * sb_tag_gt_xpm[] = { 3 | "20 15 4 1", 4 | " c None", 5 | ". c #828282", 6 | "+ c #000000", 7 | "@ c #FFF993", 8 | " ", 9 | " ", 10 | " ............... ", 11 | " .+++++++++++++++.", 12 | " .+@@@@@++@@@@@@@+.", 13 | " .+@@@@@@+++@@@@@@+.", 14 | ".+@@@@@@@++++@@@@@+.", 15 | ".+@++@@@@+++++@@@@+.", 16 | ".+@++@@@@+++++.@@@+.", 17 | ".+@@@@@@@++++.@@@@+.", 18 | " .+@@@@@@+++.@@@@@+.", 19 | " .+@@@@@++.@@@@@@+.", 20 | ". .++++++.++++++++.", 21 | " ............... ", 22 | " "}; 23 | -------------------------------------------------------------------------------- /etc/images/ezimage/tag-minus.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * sb_tag__xpm[] = { 3 | "20 15 4 1", 4 | " c None", 5 | ". c #828282", 6 | "+ c #000000", 7 | "@ c #FFF993", 8 | " ", 9 | " ", 10 | " ............... ", 11 | " .+++++++++++++++.", 12 | " .+@@@@@@@@@@@@@@+.", 13 | " .+@@@@@@@@@@@@@@@+.", 14 | ".+@@@@@@@@@@@@@@@@+.", 15 | ".+@++@@++++++@@@@@+.", 16 | ".+@++@@++++++@@@@@+.", 17 | ".+@@@@@@@@@@@@@@@@+.", 18 | " .+@@@@@@@@@@@@@@@+.", 19 | " .+@@@@@@@@@@@@@@+.", 20 | ". .+++++++++++++++.", 21 | " ............... ", 22 | " "}; 23 | -------------------------------------------------------------------------------- /etc/images/ezimage/tag-plus.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * sb_tag+_xpm[] = { 3 | "20 15 4 1", 4 | " c None", 5 | ". c #828282", 6 | "+ c #000000", 7 | "@ c #FFF993", 8 | " ", 9 | " ", 10 | " ............... ", 11 | " .+++++++++++++++.", 12 | " .+@@@@@@@@@@@@@@+.", 13 | " .+@@@@@@++@@@@@@@+.", 14 | ".+@@@@@@@++@@@@@@@+.", 15 | ".+@++@@++++++@@@@@+.", 16 | ".+@++@@++++++@@@@@+.", 17 | ".+@@@@@@@++@@@@@@@+.", 18 | " .+@@@@@@++@@@@@@@+.", 19 | " .+@@@@@@@@@@@@@@+.", 20 | ". .+++++++++++++++.", 21 | " ............... ", 22 | " "}; 23 | -------------------------------------------------------------------------------- /lisp/README: -------------------------------------------------------------------------------- 1 | This directory contains source code for the parts of Emacs that are 2 | written in Emacs Lisp. *.el files are Emacs Lisp source, and the 3 | corresponding *.elc files are byte-compiled versions. Byte-compiled 4 | files are architecture-independent. 5 | 6 | The term subdirectory contains Lisp files that customize Emacs for 7 | certain terminal types. When Emacs starts, it checks the TERM 8 | environment variable to get the terminal type and loads 9 | `term/${TERM}.el' if it exists. 10 | 11 | The other subdirectories hold Lisp packages grouped by their general 12 | purpose. 13 | 14 | -------------------------------------------------------------------------------- /etc/images/ezimage/box-minus.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * sb_box_minus_xpm[] = { 3 | "20 15 4 1", 4 | " c None", 5 | ". c #000000", 6 | "+ c #828282", 7 | "@ c #D19200", 8 | "...+ +..+ ", 9 | ".@@.+ +.@.+", 10 | "+.@@.+ +.@@@.", 11 | "+.@@@.+++++++++.@@..", 12 | " +..@............@.+", 13 | " +.@..@@@@@@@@@@@..+", 14 | " +.@@..............+", 15 | " +.@@.@@@@@@@@@@@@.+", 16 | " +.@@.@@@@@@@@@@@@.+", 17 | " +.@@.@@@......@@@.+", 18 | " +.@@.@@@......@@@.+", 19 | " +.@.@@@@@@@@@@@@.+", 20 | " +..@@@@@@@@@@@@.+", 21 | " +..............+", 22 | " ++++++++++++++ "}; 23 | -------------------------------------------------------------------------------- /etc/images/ezimage/box-plus.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * sb_box_plus_xpm[] = { 3 | "20 15 4 1", 4 | " c None", 5 | ". c #828282", 6 | "+ c #000000", 7 | "@ c #D19200", 8 | " ", 9 | " .............. ", 10 | " .++++++++++++++. ", 11 | " .++@@@@@@+@@@@@+. ", 12 | " .+@+@@@@@@+@@@@@+. ", 13 | " .+@@++++++++++++++.", 14 | " .+@@+@@@@@@@@@@@@+.", 15 | " .+@@+@@@@@++@@@@@+.", 16 | " .+@@+@@@@@++@@@@@+.", 17 | " .+@@+@@@++++++@@@+.", 18 | " .+@@+@@@++++++@@@+.", 19 | " .+@+@@@@@++@@@@@+.", 20 | " .++@@@@@++@@@@@+.", 21 | " .++++++++++++++.", 22 | " .............. "}; 23 | -------------------------------------------------------------------------------- /etc/images/ezimage/tag-type.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * sb_tag_type_xpm[] = { 3 | "20 15 4 1", 4 | " c None", 5 | ". c #828282", 6 | "+ c #000000", 7 | "@ c #FFF993", 8 | " ", 9 | " ", 10 | " ............... ", 11 | " .+++++++++++++++.", 12 | " .+@@@@@@@@@@@@@@+.", 13 | " .+@@@@@@++++++@@@+.", 14 | ".+@@@@@@@++++++@@@+.", 15 | ".+@++@@@@@@++@@@@@+.", 16 | ".+@++@@@@@@++@@@@@+.", 17 | ".+@@@@@@@@@++@@@@@+.", 18 | " .+@@@@@@@@++@@@@@+.", 19 | " .+@@@@@@@@@@@@@@+.", 20 | ". .+++++++++++++++.", 21 | " ............... ", 22 | " "}; 23 | -------------------------------------------------------------------------------- /etc/images/ezimage/dir.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * sb_dir_xpm[] = { 3 | "20 15 5 1", 4 | " c None", 5 | ". c #828282", 6 | "+ c #000000", 7 | "@ c #DBDB00", 8 | "# c #FFF993", 9 | " ....... ", 10 | ".+++++++. ", 11 | ".+@@@@@@+.......... ", 12 | ".+@@@@@@@++++++++++.", 13 | ".+@@@@@@@@@@@@@@@@+.", 14 | ".+##############@@+.", 15 | ".+###############@+.", 16 | ".+###############@+.", 17 | ".+###############@+.", 18 | ".+###############@+.", 19 | ".+###############@+.", 20 | ".+###############@+.", 21 | ".+###############@+.", 22 | ".++++++++++++++++++.", 23 | " .................. "}; 24 | -------------------------------------------------------------------------------- /etc/images/ezimage/page.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * sb_pg_xpm[] = { 3 | "20 15 5 1", 4 | " c None", 5 | ". c #828282", 6 | "+ c #000000", 7 | "@ c #FFFFFF", 8 | "# c #ADADAD", 9 | " ............ ", 10 | " .++++++++++++.", 11 | " .++@@@@@@@@@@+.", 12 | " .+#+@@@@@@@@@@+.", 13 | " .+##+@@@@@@@@@@+.", 14 | " .+###+@@@@@@@@@@+.", 15 | " .+####+@@@@@@@@@@+.", 16 | ".+++++++@@@@@@@@@@+.", 17 | ".+@@@@@@@@@@@@@@@@+.", 18 | ".+@@@@@@@@@@@@@@@@+.", 19 | ".+@@@@@@@@@@@@@@@@+.", 20 | ".+@@@@@@@@@@@@@@@@+.", 21 | ".+@@@@@@@@@@@@@@@@+.", 22 | ".++++++++++++++++++.", 23 | " .................. "}; 24 | -------------------------------------------------------------------------------- /admin/notes/cvslogs: -------------------------------------------------------------------------------- 1 | http://lists.gnu.org/archive/html/emacs-devel/2007-12/msg01208.html 2 | 3 | From: Eli Zaretskii 4 | Subject: Re: Log messages in CVS 5 | Date: Sat, 29 Dec 2007 16:06:29 +0200 6 | 7 | I once posted a summary that I know about; see: 8 | 9 | http://lists.gnu.org/archive/html/emacs-devel/2006-11/msg00229.html 10 | http://lists.gnu.org/archive/html/emacs-devel/2006-11/msg00234.html 11 | http://lists.gnu.org/archive/html/emacs-devel/2006-11/msg00312.html 12 | 13 | Richard commented here, basically approving my summary: 14 | 15 | http://lists.gnu.org/archive/html/emacs-devel/2006-11/msg00276.html 16 | -------------------------------------------------------------------------------- /etc/charsets/CP1253.map: -------------------------------------------------------------------------------- 1 | # Generated from CP1253 in localedate/charmaps of glibc 2 | 0x00-0x7F 0x0000 3 | 0x80 0x20AC 4 | 0x82 0x201A 5 | 0x83 0x0192 6 | 0x84 0x201E 7 | 0x85 0x2026 8 | 0x86-0x87 0x2020 9 | 0x89 0x2030 10 | 0x8B 0x2039 11 | 0x91-0x92 0x2018 12 | 0x93-0x94 0x201C 13 | 0x95 0x2022 14 | 0x96-0x97 0x2013 15 | 0x99 0x2122 16 | 0x9B 0x203A 17 | 0xA0 0x00A0 18 | 0xA1-0xA2 0x0385 19 | 0xA3-0xA9 0x00A3 20 | 0xAB-0xAE 0x00AB 21 | 0xAF 0x2015 22 | 0xB0-0xB3 0x00B0 23 | 0xB4 0x0384 24 | 0xB5-0xB7 0x00B5 25 | 0xB8-0xBA 0x0388 26 | 0xBB 0x00BB 27 | 0xBC 0x038C 28 | 0xBD 0x00BD 29 | 0xBE-0xD1 0x038E 30 | 0xD3-0xFE 0x03A3 31 | -------------------------------------------------------------------------------- /etc/e/README: -------------------------------------------------------------------------------- 1 | eterm-color.ti is a terminfo source file. eterm-color is a compiled 2 | version produced by the terminfo compiler (tic). The compiled files 3 | are binary, and depend on the version of tic, but they seem to be 4 | system-independent and backwardly compatible. So there should be no 5 | need to recompile the distributed binary version. If it is 6 | necessary, use: 7 | 8 | tic -o ../ ./eterm-color.ti 9 | 10 | The compiled file is used by lisp/term.el, so if it is moved term.el 11 | needs to be changed. terminfo requires it to be stored in an `e' 12 | subdirectory (the first character of the file name). 13 | -------------------------------------------------------------------------------- /etc/images/ezimage/dir-minus.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * sb_dir_minus_xpm[] = { 3 | "20 15 5 1", 4 | " c None", 5 | ". c #828282", 6 | "+ c #000000", 7 | "@ c #DBDB00", 8 | "# c #FFF993", 9 | " ....... ", 10 | ".+++++++. ", 11 | ".+@@@@@@+......... ", 12 | ".+@@@@@@@++++++++. ", 13 | ".+@@@@@@@@@@@@@@+...", 14 | ".+@@++++++++++++++++", 15 | ".+@@+##############+", 16 | ".+@+##############+.", 17 | ".+@+####++++++####+.", 18 | ".+@+####++++++####+.", 19 | ".+@+##############+.", 20 | ".++##############+..", 21 | ".++##############+. ", 22 | ".+++++++++++++++++. ", 23 | " ................. "}; 24 | -------------------------------------------------------------------------------- /etc/images/ezimage/dir-plus.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * sb_dir_plus_xpm[] = { 3 | "20 15 5 1", 4 | " c None", 5 | ". c #828282", 6 | "+ c #000000", 7 | "@ c #DBDB00", 8 | "# c #FFF993", 9 | " ....... ", 10 | ".+++++++. ", 11 | ".+@@@@@@+.......... ", 12 | ".+@@@@@@@++++++++++.", 13 | ".+@@@@@@@@@@@@@@@@+.", 14 | ".+#######++#####@@+.", 15 | ".+#######++######@+.", 16 | ".+#####++++++####@+.", 17 | ".+#####++++++####@+.", 18 | ".+#######++######@+.", 19 | ".+#######++######@+.", 20 | ".+###############@+.", 21 | ".+###############@+.", 22 | ".++++++++++++++++++.", 23 | " .................. "}; 24 | -------------------------------------------------------------------------------- /etc/images/ezimage/page-minus.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * sb_pg_minus_xpm[] = { 3 | "20 15 5 1", 4 | " c None", 5 | ". c #828282", 6 | "+ c #000000", 7 | "@ c #FFFFFF", 8 | "# c #ADADAD", 9 | " ............ ", 10 | " .++++++++++++.", 11 | " .++@@@@@@@@@@+.", 12 | " .+#+@@@@@@@@@@+.", 13 | " .+##+@@@@@@@@@@+.", 14 | " .+###+@@@@@@@@@@+.", 15 | " .+####+@@@@@@@@@@+.", 16 | ".+++++++@++++++@@@+.", 17 | ".+@@@@@@@++++++@@@+.", 18 | ".+@@@@@@@@@@@@@@@@+.", 19 | ".+@@@@@@@@@@@@@@@@+.", 20 | ".+@@@@@@@@@@@@@@@@+.", 21 | ".+@@@@@@@@@@@@@@@@+.", 22 | ".++++++++++++++++++.", 23 | " .................. "}; 24 | -------------------------------------------------------------------------------- /etc/images/ezimage/page-plus.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * sb_pg_plus_xpm[] = { 3 | "20 15 5 1", 4 | " c None", 5 | ". c #828282", 6 | "+ c #000000", 7 | "@ c #FFFFFF", 8 | "# c #ADADAD", 9 | " ............ ", 10 | " .++++++++++++.", 11 | " .++@@@@@@@@@@+.", 12 | " .+#+@@@@@@@@@@+.", 13 | " .+##+@@@@@@@@@@+.", 14 | " .+###+@@@++@@@@@+.", 15 | " .+####+@@@++@@@@@+.", 16 | ".+++++++@++++++@@@+.", 17 | ".+@@@@@@@++++++@@@+.", 18 | ".+@@@@@@@@@++@@@@@+.", 19 | ".+@@@@@@@@@++@@@@@+.", 20 | ".+@@@@@@@@@@@@@@@@+.", 21 | ".+@@@@@@@@@@@@@@@@+.", 22 | ".++++++++++++++++++.", 23 | " .................. "}; 24 | -------------------------------------------------------------------------------- /etc/charsets/CP1255.map: -------------------------------------------------------------------------------- 1 | # Generated from CP1255 in localedate/charmaps of glibc 2 | 0x00-0x7F 0x0000 3 | 0x80 0x20AC 4 | 0x82 0x201A 5 | 0x83 0x0192 6 | 0x84 0x201E 7 | 0x85 0x2026 8 | 0x86-0x87 0x2020 9 | 0x88 0x02C6 10 | 0x89 0x2030 11 | 0x8B 0x2039 12 | 0x91-0x92 0x2018 13 | 0x93-0x94 0x201C 14 | 0x95 0x2022 15 | 0x96-0x97 0x2013 16 | 0x98 0x02DC 17 | 0x99 0x2122 18 | 0x9B 0x203A 19 | 0xA0-0xA3 0x00A0 20 | 0xA4 0x20AA 21 | 0xA5-0xA9 0x00A5 22 | 0xAA 0x00D7 23 | 0xAB-0xB9 0x00AB 24 | 0xBA 0x00F7 25 | 0xBB-0xBF 0x00BB 26 | 0xC0-0xC9 0x05B0 27 | 0xCB-0xD3 0x05BB 28 | 0xD4-0xD8 0x05F0 29 | 0xE0-0xFA 0x05D0 30 | 0xFD-0xFE 0x200E 31 | -------------------------------------------------------------------------------- /etc/images/gnus/preview.xbm: -------------------------------------------------------------------------------- 1 | #define preview_width 24 2 | #define preview_height 24 3 | static char preview_bits[] = { 4 | 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 5 | 0x00,0xc0,0x03,0x00,0x3e,0x06,0xf0,0x03,0x04,0x08,0x00,0x0a,0x78,0x00,0x09, 6 | 0x88,0xf9,0x08,0x10,0xc6,0x10,0x10,0x3a,0x13,0x10,0x06,0x15,0x20,0x02,0x29, 7 | 0x20,0x02,0x31,0x20,0xad,0x0f,0x40,0xf9,0x03,0xc0,0xb8,0x07,0x80,0x07,0x0e, 8 | 0x80,0x01,0x1c,0x00,0x00,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xc8,0x00, 9 | 0x00,0x00,0x39,0x00,0x00,0x00,0x08,0xc0,0x12,0x42,0x00,0x00,0x00,0x00,0x38, 10 | 0x82,0x18,0x08,0x00,0x00,0x00 }; 11 | -------------------------------------------------------------------------------- /test/cedet/tests/testnsp.cpp: -------------------------------------------------------------------------------- 1 | // Test NSP (Name space parent) 2 | // 3 | // Test dereferencing parents based on local parent scope. 4 | // 5 | // Derived from data David Engster provided. 6 | 7 | namespace nsp { 8 | 9 | class rootclass { 10 | public: 11 | int fromroot() {}; 12 | }; 13 | 14 | } 15 | 16 | namespace nsp { 17 | class childclass : public rootclass { 18 | public: 19 | int fromchild() {}; 20 | }; 21 | } 22 | 23 | void myfcn_not_in_ns (void) { 24 | nsp::childclass test; 25 | 26 | test.// -1- 27 | ; // #1# ( "fromchild" "fromroot" ) 28 | } 29 | 30 | // arch-tag: 2e9c6bf7-1574-440f-ba66-5c8fe034cdec 31 | -------------------------------------------------------------------------------- /etc/README: -------------------------------------------------------------------------------- 1 | This directory contains the architecture-independent files used by or 2 | with Emacs. This includes some text files of documentation for GNU 3 | Emacs or of interest to Emacs users, and the file of dumped docstrings 4 | for Emacs functions and variables. 5 | 6 | `forms-d2.dat' is an example data file used by forms-d2.el. 7 | 8 | COPYRIGHT AND LICENSE INFORMATION FOR IMAGE FILES 9 | 10 | File: emacs.icon 11 | Author: Sun Microsystems, Inc 12 | Copyright (C) 1999, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 13 | Free Software Foundation, Inc. 14 | License: GNU General Public License version 3 or later (see COPYING) 15 | -------------------------------------------------------------------------------- /etc/images/sort-row-ascending.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * stock_sort_row_ascending_xpm[] = { 3 | "21 17 2 1", 4 | " c None", 5 | ". c #000000", 6 | " ", 7 | " ", 8 | " ", 9 | " ", 10 | " ... .... ", 11 | " . .. .. .. ", 12 | " .. .. .. ", 13 | " .. .. .. ", 14 | " .. ..... ", 15 | " .. .. ", 16 | " .. . .. ", 17 | " ..... . . . ..... ", 18 | " ", 19 | " ", 20 | " ", 21 | " ", 22 | " "}; 23 | -------------------------------------------------------------------------------- /etc/schema/xhtml-ruby.rnc: -------------------------------------------------------------------------------- 1 | ruby = 2 | element ruby { 3 | ruby.attlist, 4 | ((rb, 5 | (rt | (rp, rt, rp))) 6 | | (rbc, rtc, rtc?)) 7 | } 8 | ruby.attlist = Common.attrib 9 | rbc = element rbc { rbc.attlist, rb+ } 10 | rbc.attlist = Common.attrib 11 | rtc = element rtc { rtc.attlist, rt+ } 12 | rtc.attlist = Common.attrib 13 | rb = element rb { rb.attlist, Inline.model } 14 | rb.attlist = Common.attrib 15 | rt = element rt { rt.attlist, Inline.model } 16 | rt.attlist = 17 | Common.attrib, 18 | attribute rt { Number.datatype }? 19 | rp = element rp { rp.attlist, text } 20 | rp.attlist = Common.attrib 21 | Inline.class |= ruby 22 | -------------------------------------------------------------------------------- /nt/inc/sys/time.h: -------------------------------------------------------------------------------- 1 | #ifndef SYS_TIME_H_INCLUDED 2 | #define SYS_TIME_H_INCLUDED 3 | 4 | /* 5 | * sys/time.h doesn't exist on NT 6 | */ 7 | 8 | struct timeval 9 | { 10 | long tv_sec; /* seconds */ 11 | long tv_usec; /* microseconds */ 12 | }; 13 | struct timezone 14 | { 15 | int tz_minuteswest; /* minutes west of Greenwich */ 16 | int tz_dsttime; /* type of dst correction */ 17 | }; 18 | 19 | void gettimeofday (struct timeval *, struct timezone *); 20 | 21 | #endif /* SYS_TIME_H_INCLUDED */ 22 | 23 | /* end of sys/time.h */ 24 | 25 | /* arch-tag: bc525883-0c81-4bea-b83d-3325461f38b5 26 | (do not change this comment) */ 27 | -------------------------------------------------------------------------------- /etc/images/smilies/medium/cry.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * cry_xpm[] = { 3 | "16 16 9 1", 4 | " c None", 5 | ". c #000000", 6 | "+ c #1D1900", 7 | "@ c #887500", 8 | "# c #D3B600", 9 | "$ c #FAD800", 10 | "% c #645600", 11 | "& c #FFDD00", 12 | "* c #594D00", 13 | " ...... ", 14 | " .+@#$$#@+. ", 15 | " .%$&&&&&&$%. ", 16 | " .%&&&&&&&*&&%. ", 17 | " +$&&**&&*.*&$+ ", 18 | ".@&&...*&.*.&&@.", 19 | ".#&&&&&&&.#.&&#.", 20 | ".$&&&&&&&#.%&&$.", 21 | ".$&&&&&&&&&&&&$.", 22 | ".#&&&@....@&&&#.", 23 | ".@&&*.#&&#.*&&@.", 24 | " +$#.#&&&&#.#$+ ", 25 | " .%&*&&&&&&*&%. ", 26 | " .%$&&&&&&$%. ", 27 | " .+@#$$#@+. ", 28 | " ...... "}; 29 | -------------------------------------------------------------------------------- /etc/images/smilies/medium/sad.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * sad_xpm[] = { 3 | "16 16 9 1", 4 | " c None", 5 | ". c #000000", 6 | "+ c #1D1900", 7 | "@ c #887500", 8 | "# c #D3B600", 9 | "$ c #FAD800", 10 | "% c #645600", 11 | "& c #FFDD00", 12 | "* c #594D00", 13 | " ...... ", 14 | " .+@#$$#@+. ", 15 | " .%$&&&&&&$%. ", 16 | " .%&&*&&&&*&&%. ", 17 | " +$&&.&&&&.&&$+ ", 18 | ".@&&&.&&&&.&&&@.", 19 | ".#&&&.&&&&.&&&#.", 20 | ".$&&&&&&&&&&&&$.", 21 | ".$&&&&&&&&&&&&$.", 22 | ".#&&&@....@&&&#.", 23 | ".@&&*.#&&#.*&&@.", 24 | " +$#.#&&&&#.#$+ ", 25 | " .%&*&&&&&&*&%. ", 26 | " .%$&&&&&&$%. ", 27 | " .+@#$$#@+. ", 28 | " ...... "}; 29 | -------------------------------------------------------------------------------- /etc/images/smilies/medium/wry.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * wry_xpm[] = { 3 | "16 16 9 1", 4 | " c None", 5 | ". c #000000", 6 | "+ c #1D1900", 7 | "@ c #887500", 8 | "# c #D3B600", 9 | "$ c #FAD800", 10 | "% c #645600", 11 | "& c #FFDD00", 12 | "* c #594D00", 13 | " ...... ", 14 | " .+@#$$#@+. ", 15 | " .%$&&&&&&$%. ", 16 | " .%&&*&&&&*&&%. ", 17 | " +$&&.&&&&.&&$+ ", 18 | ".@&&&.&&&&.&&&@.", 19 | ".#&&&.&&&&.&&&#.", 20 | ".$&&&&&&&&&&&&$.", 21 | ".$&&&&&&&&&%&&$.", 22 | ".#&&&&&&&&@%&&#.", 23 | ".@&&#......#&&@.", 24 | " +$&%@&&&&&&&$+ ", 25 | " .%&%&&&&&&&&%. ", 26 | " .%$&&&&&&$%. ", 27 | " .+@#$$#@+. ", 28 | " ...... "}; 29 | -------------------------------------------------------------------------------- /etc/images/smilies/medium/dead.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * dead_xpm[] = { 3 | "16 16 9 1", 4 | " c None", 5 | ". c #000000", 6 | "+ c #1D1900", 7 | "@ c #887500", 8 | "# c #D3B600", 9 | "$ c #FAD800", 10 | "% c #645600", 11 | "& c #FFDD00", 12 | "* c #8F7B00", 13 | " ...... ", 14 | " .+@#$$#@+. ", 15 | " .%$&&&&&&$%. ", 16 | " .%*#&#*$#&#*%. ", 17 | " +$#.#.##.#.#$+ ", 18 | ".@&&#.$&&$.#&&@.", 19 | ".#&#.#.$$.#.#&#.", 20 | ".$&*#&#*$#&#*&$.", 21 | ".$&.&&&&&&&&.&$.", 22 | ".#&#.&&&&&&.#&#.", 23 | ".@&&*.&&&&.*&&@.", 24 | " +$&&*....*&&$+ ", 25 | " .%&&&&&&&&&&%. ", 26 | " .%$&&&&&&$%. ", 27 | " .+@#$$#@+. ", 28 | " ...... "}; 29 | -------------------------------------------------------------------------------- /etc/images/smilies/medium/frown.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * frown_xpm[] = { 3 | "16 16 9 1", 4 | " c None", 5 | ". c #000000", 6 | "+ c #1D1900", 7 | "@ c #887500", 8 | "# c #D3B600", 9 | "$ c #FAD800", 10 | "% c #645600", 11 | "& c #FFDD00", 12 | "* c #594D00", 13 | " ...... ", 14 | " .+@#$$#@+. ", 15 | " .%$&&&&&&$%. ", 16 | " .%&@*&&&&*@&%. ", 17 | " +$&#.&&&&.#&$+ ", 18 | ".@&&&.*&#*.&&&@.", 19 | ".#&&&.*##*.&&&#.", 20 | ".$&&&&&&&&&&&&$.", 21 | ".$&&&&&&&&&&&&$.", 22 | ".#&&&@....@&&&#.", 23 | ".@&&*.#&&#.*&&@.", 24 | " +$#.#&&&&#.#$+ ", 25 | " .%&*&&&&&&*&%. ", 26 | " .%$&&&&&&$%. ", 27 | " .+@#$$#@+. ", 28 | " ...... "}; 29 | -------------------------------------------------------------------------------- /admin/notes/cpp: -------------------------------------------------------------------------------- 1 | ttn 2003-04-09 2 | 3 | we use a C preprocesor not only in the normal compilation of .c files 4 | into object files, but also for creating 5 | 6 | src/Makefile 7 | lib-src/Makefile 8 | 9 | (delimited by comment "start of cpp stuff"). some cpp implementations 10 | insert whitespace in between tokens. 11 | 12 | during makefile creation, the preprocessor symbol NOT_C_CODE is defined. 13 | this should not be defined for normal .c file compilation. 14 | 15 | there has been discussion on eliminating this use of cpp and relying 16 | solely on autoconf processing. rms says to leave it be. 17 | 18 | ;;; arch-tag: d654291e-9fc8-41b7-ab0c-d3cde842a8e0 19 | -------------------------------------------------------------------------------- /etc/images/ezimage/README: -------------------------------------------------------------------------------- 1 | COPYRIGHT AND LICENSE INFORMATION FOR IMAGE FILES 2 | 3 | Files: bits.xpm bitsbang.xpm box-minus.xpm box-plus.xpm 4 | box.xpm checkmark.xpm dir-minus.xpm dir-plus.xpm dir.xpm 5 | doc-minus.xpm doc-plus.xpm doc.xpm info.xpm key.xpm label.xpm 6 | lock.xpm mail.xpm page-minus.xpm page-plus.xpm page.xpm 7 | tag-gt.xpm tag-minus.xpm tag-plus.xpm tag-type.xpm tag-v.xpm 8 | tag.xpm unlock.xpm 9 | Author: Eric M. Ludlam 10 | Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 11 | Free Software Foundation, Inc. 12 | License: GNU General Public License version 3 or later (see COPYING) 13 | -------------------------------------------------------------------------------- /etc/images/smilies/medium/forced.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * forced_xpm[] = { 3 | "16 16 9 1", 4 | " c None", 5 | ". c #000000", 6 | "+ c #1D1900", 7 | "@ c #887500", 8 | "# c #D3B600", 9 | "$ c #FAD800", 10 | "% c #645600", 11 | "& c #FFDD00", 12 | "* c #594D00", 13 | " ...... ", 14 | " .+@#$$#@+. ", 15 | " .%$&&&&&&$%. ", 16 | " .%&&*&&&&*&&%. ", 17 | " +$&&.&&&&.&&$+ ", 18 | ".@&&&.&&&&.&&&@.", 19 | ".#&&&.&&&&.&&&#.", 20 | ".$&&&&&&&&&&&&$.", 21 | ".$&@&&&&&&&&@&$.", 22 | ".#&.#&&&&&&#.&#.", 23 | ".@&@@#&&&&#@@&@.", 24 | " +$#+......+#$+ ", 25 | " .%&&&&&&&&&&%. ", 26 | " .%$&&&&&&$%. ", 27 | " .+@#$$#@+. ", 28 | " ...... "}; 29 | -------------------------------------------------------------------------------- /etc/charsets/CP1254.map: -------------------------------------------------------------------------------- 1 | # Generated from CP1254 in localedate/charmaps of glibc 2 | 0x00-0x7F 0x0000 3 | 0x80 0x20AC 4 | 0x82 0x201A 5 | 0x83 0x0192 6 | 0x84 0x201E 7 | 0x85 0x2026 8 | 0x86-0x87 0x2020 9 | 0x88 0x02C6 10 | 0x89 0x2030 11 | 0x8A 0x0160 12 | 0x8B 0x2039 13 | 0x8C 0x0152 14 | 0x91-0x92 0x2018 15 | 0x93-0x94 0x201C 16 | 0x95 0x2022 17 | 0x96-0x97 0x2013 18 | 0x98 0x02DC 19 | 0x99 0x2122 20 | 0x9A 0x0161 21 | 0x9B 0x203A 22 | 0x9C 0x0153 23 | 0x9F 0x0178 24 | 0xA0-0xCF 0x00A0 25 | 0xD0 0x011E 26 | 0xD1-0xDC 0x00D1 27 | 0xDD 0x0130 28 | 0xDE 0x015E 29 | 0xDF-0xEF 0x00DF 30 | 0xF0 0x011F 31 | 0xF1-0xFC 0x00F1 32 | 0xFD 0x0131 33 | 0xFE 0x015F 34 | 0xFF 0x00FF 35 | -------------------------------------------------------------------------------- /doc/lispref/book-spine.texinfo: -------------------------------------------------------------------------------- 1 | \input texinfo @c -*-texinfo-*- 2 | @c %**start of header 3 | @setfilename book-spine 4 | @settitle book-spine 5 | @c %**end of header 6 | 7 | @c need dot in text so first space command works! 8 | . 9 | @sp 7 10 | 11 | @center @titlefont{GNU Emacs Lisp Reference Manual} 12 | @sp 5 13 | @center GNU 14 | @center Emacs Version 23.1.90 15 | @center for Unix Users 16 | @sp 5 17 | 18 | @center by 19 | @center Bil Lewis, 20 | @center Dan LaLiberte, 21 | @center and the 22 | @center GNU Manual Group 23 | @sp 5 24 | @center Free Software Foundation 25 | @bye 26 | 27 | @ignore 28 | arch-tag: 4466c7ca-e549-4119-948c-6eed34e1ff87 29 | @end ignore 30 | -------------------------------------------------------------------------------- /etc/images/smilies/medium/braindamaged.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * braindamaged_xpm[] = { 3 | "16 16 9 1", 4 | " c None", 5 | ". c #000000", 6 | "+ c #1D1900", 7 | "@ c #887500", 8 | "# c #D3B600", 9 | "$ c #FAD800", 10 | "% c #645600", 11 | "& c #FFDD00", 12 | "* c #8F7B00", 13 | " ...... ", 14 | " .+@#$$#@+. ", 15 | " .%$&&&&&&$%. ", 16 | " .%&#..##..#&%. ", 17 | " +$&.%#..#%.&$+ ", 18 | ".@&&.#%+%%#.&&@.", 19 | ".#&&.%#+%#%.&&#.", 20 | ".$&&#..#&..#&&$.", 21 | ".$&.&&&&&&&&.&$.", 22 | ".#&#.&&&&&&.#&#.", 23 | ".@&&*.&&&&.*&&@.", 24 | " +$&&*....*&&$+ ", 25 | " .%&&&&&&&&&&%. ", 26 | " .%$&&&&&&$%. ", 27 | " .+@#$$#@+. ", 28 | " ...... "}; 29 | -------------------------------------------------------------------------------- /etc/images/smilies/medium/indifferent.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * indifferent_xpm[] = { 3 | "16 16 9 1", 4 | " c None", 5 | ". c #000000", 6 | "+ c #1D1900", 7 | "@ c #887500", 8 | "# c #D3B600", 9 | "$ c #FAD800", 10 | "% c #645600", 11 | "& c #FFDD00", 12 | "* c #594D00", 13 | " ...... ", 14 | " .+@#$$#@+. ", 15 | " .%$&&&&&&$%. ", 16 | " .%&&*&&&&*&&%. ", 17 | " +$&&.&&&&.&&$+ ", 18 | ".@&&&.&&&&.&&&@.", 19 | ".#&&&.&&&&.&&&#.", 20 | ".$&&&&&&&&&&&&$.", 21 | ".$%&&&&&&&&&#%$.", 22 | ".#.@.@&&&@&&.&#.", 23 | ".@&.#.@#..@.@&@.", 24 | " +$@&&..#&..&$+ ", 25 | " .%&&&&.&&&&&%. ", 26 | " .%$&&&&&&$%. ", 27 | " .+@#$$#@+. ", 28 | " ...... "}; 29 | -------------------------------------------------------------------------------- /etc/images/smilies/medium/blink.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * blink_xpm[] = { 3 | "16 16 10 1", 4 | " c None", 5 | ". c #000000", 6 | "+ c #1D1900", 7 | "@ c #887500", 8 | "# c #D3B600", 9 | "$ c #FAD800", 10 | "% c #645600", 11 | "& c #FFDD00", 12 | "* c #594D00", 13 | "= c #8F7B00", 14 | " ...... ", 15 | " .+@#$$#@+. ", 16 | " .%$&&&&&&$%. ", 17 | " .%&&&&&&&*&&%. ", 18 | " +$&&&&&&&.&&$+ ", 19 | ".@&@%##%&&.&&&@.", 20 | ".#&&&..&&&.&&&#.", 21 | ".$&&&&&&&&&&&&$.", 22 | ".$&.&&&&&&&&.&$.", 23 | ".#&#.&&&&&&.#&#.", 24 | ".@&&=.&&&&.=&&@.", 25 | " +$&&=....=&&$+ ", 26 | " .%&&&&&&&&&&%. ", 27 | " .%$&&&&&&$%. ", 28 | " .+@#$$#@+. ", 29 | " ...... "}; 30 | -------------------------------------------------------------------------------- /etc/images/smilies/medium/evil.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * evil_xpm[] = { 3 | "16 16 10 1", 4 | " c None", 5 | ". c #000000", 6 | "+ c #1D1900", 7 | "@ c #887500", 8 | "# c #D3B600", 9 | "$ c #FAD800", 10 | "% c #645600", 11 | "& c #FFDD00", 12 | "* c #594D00", 13 | "= c #8F7B00", 14 | " ...... ", 15 | " .+@#$$#@+. ", 16 | " .%$&&&&&&$%. ", 17 | " .%&@*&&&&*@&%. ", 18 | " +$&#.&&&&.#&$+ ", 19 | ".@&&&.*&#*.&&&@.", 20 | ".#&&&.*##*.&&&#.", 21 | ".$&&&&&&&&&&&&$.", 22 | ".$&.&&&&&&&&.&$.", 23 | ".#&#.&&&&&&.#&#.", 24 | ".@&&=.&&&&.=&&@.", 25 | " +$&&=....=&&$+ ", 26 | " .%&&&&&&&&&&%. ", 27 | " .%$&&&&&&$%. ", 28 | " .+@#$$#@+. ", 29 | " ...... "}; 30 | -------------------------------------------------------------------------------- /etc/images/smilies/medium/smile.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * smile_xpm[] = { 3 | "16 16 10 1", 4 | " c None", 5 | ". c #000000", 6 | "+ c #1D1900", 7 | "@ c #887500", 8 | "# c #D3B600", 9 | "$ c #FAD800", 10 | "% c #645600", 11 | "& c #FFDD00", 12 | "* c #594D00", 13 | "= c #8F7B00", 14 | " ...... ", 15 | " .+@#$$#@+. ", 16 | " .%$&&&&&&$%. ", 17 | " .%&&*&&&&*&&%. ", 18 | " +$&&.&&&&.&&$+ ", 19 | ".@&&&.&&&&.&&&@.", 20 | ".#&&&.&&&&.&&&#.", 21 | ".$&&&&&&&&&&&&$.", 22 | ".$&.&&&&&&&&.&$.", 23 | ".#&#.&&&&&&.#&#.", 24 | ".@&&=.&&&&.=&&@.", 25 | " +$&&=....=&&$+ ", 26 | " .%&&&&&&&&&&%. ", 27 | " .%$&&&&&&$%. ", 28 | " .+@#$$#@+. ", 29 | " ...... "}; 30 | -------------------------------------------------------------------------------- /oldXMenu/EvHand.c: -------------------------------------------------------------------------------- 1 | /* Copyright Massachusetts Institute of Technology 1985 */ 2 | 3 | #include "copyright.h" 4 | 5 | 6 | /* 7 | * XMenu: MIT Project Athena, X Window system menu package 8 | * 9 | * XMenuEventHandler - Set the XMenu asynchronous event handler. 10 | * 11 | * Author: Tony Della Fera, DEC 12 | * December 19, 1985 13 | * 14 | */ 15 | 16 | #include "XMenuInt.h" 17 | 18 | XMenuEventHandler(handler) 19 | int (*handler)(); 20 | { 21 | /* 22 | * Set the global event handler variable. 23 | */ 24 | _XMEventHandler = handler; 25 | } 26 | 27 | /* arch-tag: 8d614c8c-94d9-43c8-8e32-c438a3c8a8a3 28 | (do not change this comment) */ 29 | -------------------------------------------------------------------------------- /etc/images/smilies/medium/grin.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * grin_xpm[] = { 3 | "16 16 11 1", 4 | " c None", 5 | ". c #000000", 6 | "+ c #1D1900", 7 | "@ c #887500", 8 | "# c #D3B600", 9 | "$ c #FAD800", 10 | "% c #645600", 11 | "& c #FFDD00", 12 | "* c #594D00", 13 | "= c #FFFFFF", 14 | "- c #8F7B00", 15 | " ...... ", 16 | " .+@#$$#@+. ", 17 | " .%$&&&&&&$%. ", 18 | " .%&&*&&&&*&&%. ", 19 | " +$&&.&&&&.&&$+ ", 20 | ".@&&&.&&&&.&&&@.", 21 | ".#&&&.&&&&.&&&#.", 22 | ".$&&&&&&&&&&&&$.", 23 | ".$&..%%@@%%..&$.", 24 | ".#&#.======.#&#.", 25 | ".@&&-.====.-&&@.", 26 | " +$&&-....-&&$+ ", 27 | " .%&&&&&&&&&&%. ", 28 | " .%$&&&&&&$%. ", 29 | " .+@#$$#@+. ", 30 | " ...... "}; 31 | -------------------------------------------------------------------------------- /etc/images/smilies/medium/reverse-smile.xpm: -------------------------------------------------------------------------------- 1 | /* XPM */ 2 | static char * reverse_smile_xpm[] = { 3 | "16 16 10 1", 4 | " c None", 5 | ". c #000000", 6 | "+ c #1D1900", 7 | "@ c #887500", 8 | "# c #D3B600", 9 | "$ c #FAD800", 10 | "% c #645600", 11 | "& c #FFDD00", 12 | "* c #8F7B00", 13 | "= c #594D00", 14 | " ...... ", 15 | " .+@#$$#@+. ", 16 | " .%$&&&&&&$%. ", 17 | " .%&&&&&&&&&&%. ", 18 | " +$&&*....*&&$+ ", 19 | ".@&&*.&&&&.*&&@.", 20 | ".#&#.&&&&&&.#&#.", 21 | ".$&.&&&&&&&&.&$.", 22 | ".$&&&&&&&&&&&&$.", 23 | ".#&&&.&&&&.&&&#.", 24 | ".@&&&.&&&&.&&&@.", 25 | " +$&&.&&&&.&&$+ ", 26 | " .%&&=&&&&=&&%. ", 27 | " .%$&&&&&&$%. ", 28 | " .+@#$$#@+. ", 29 | " ...... "}; 30 | -------------------------------------------------------------------------------- /etc/nxml/020A0-020CF.el: -------------------------------------------------------------------------------- 1 | (nxml-define-char-name-set 'currency-symbols 2 | '(("EURO-CURRENCY SIGN" #x20A0) 3 | ("COLON SIGN" #x20A1) 4 | ("CRUZEIRO SIGN" #x20A2) 5 | ("FRENCH FRANC SIGN" #x20A3) 6 | ("LIRA SIGN" #x20A4) 7 | ("MILL SIGN" #x20A5) 8 | ("NAIRA SIGN" #x20A6) 9 | ("PESETA SIGN" #x20A7) 10 | ("RUPEE SIGN" #x20A8) 11 | ("WON SIGN" #x20A9) 12 | ("NEW SHEQEL SIGN" #x20AA) 13 | ("DONG SIGN" #x20AB) 14 | ("EURO SIGN" #x20AC) 15 | ("KIP SIGN" #x20AD) 16 | ("TUGRIK SIGN" #x20AE) 17 | ("DRACHMA SIGN" #x20AF) 18 | ("GERMAN PENNY SIGN" #x20B0) 19 | ("PESO SIGN" #x20B1) 20 | )) 21 | 22 | ;; arch-tag: 2f9ece37-0ae6-4a82-b12e-dc10ac58e6ce 23 | -------------------------------------------------------------------------------- /nt/inc/pwd.h: -------------------------------------------------------------------------------- 1 | #ifndef _PWD_H_ 2 | #define _PWD_H_ 3 | /* 4 | * pwd.h doesn't exist on NT, so we put together our own. 5 | */ 6 | 7 | struct passwd { 8 | char *pw_name; 9 | char *pw_passwd; 10 | unsigned pw_uid; /* Vista's TrustedInstaller has a very large RID */ 11 | unsigned pw_gid; 12 | int pw_quota; 13 | char *pw_gecos; 14 | char *pw_dir; 15 | char *pw_shell; 16 | }; 17 | 18 | typedef unsigned uid_t; 19 | typedef uid_t gid_t; 20 | 21 | struct passwd * getpwnam (char *); 22 | struct passwd * getpwuid (unsigned); 23 | 24 | 25 | #endif /* _PWD_H_ */ 26 | 27 | /* arch-tag: 68308424-cb2b-49ed-bb52-b347fee416bf 28 | (do not change this comment) */ 29 | -------------------------------------------------------------------------------- /etc/charsets/KA-PS.map: -------------------------------------------------------------------------------- 1 | # Generated from GEORGIAN-PS in localedate/charmaps of glibc 2 | 0x00-0x81 0x0000 3 | 0x82 0x201A 4 | 0x83 0x0192 5 | 0x84 0x201E 6 | 0x85 0x2026 7 | 0x86-0x87 0x2020 8 | 0x88 0x02C6 9 | 0x89 0x2030 10 | 0x8A 0x0160 11 | 0x8B 0x2039 12 | 0x8C 0x0152 13 | 0x8D-0x90 0x008D 14 | 0x91-0x92 0x2018 15 | 0x93-0x94 0x201C 16 | 0x95 0x2022 17 | 0x96-0x97 0x2013 18 | 0x98 0x02DC 19 | 0x99 0x2122 20 | 0x9A 0x0161 21 | 0x9B 0x203A 22 | 0x9C 0x0153 23 | 0x9D-0x9E 0x009D 24 | 0x9F 0x0178 25 | 0xA0-0xBF 0x00A0 26 | 0xC0-0xC6 0x10D0 27 | 0xC7 0x10F1 28 | 0xC8-0xCD 0x10D7 29 | 0xCE 0x10F2 30 | 0xCF-0xD4 0x10DD 31 | 0xD5 0x10F3 32 | 0xD6-0xE1 0x10E3 33 | 0xE2 0x10F4 34 | 0xE3-0xE4 0x10EF 35 | 0xE5 0x10F5 36 | 0xE6-0xFF 0x00E6 37 | -------------------------------------------------------------------------------- /admin/notes/changelogs: -------------------------------------------------------------------------------- 1 | http://lists.gnu.org/archive/html/emacs-devel/2007-09/msg00793.html 2 | There is no need to make change log entries for files such as NEWS, 3 | MAINTAINERS, and FOR-RELEASE. 4 | 5 | http://lists.gnu.org/archive/html/emacs-devel/2006-12/msg01135.html 6 | There is no need to indicate regeneration of files such as configure 7 | in ChangeLog. 8 | 9 | 10 | http://lists.gnu.org/archive/html/emacs-devel/2008-11/msg00940.html 11 | Preferred form for several entries with the same content: 12 | 13 | * help.el (view-lossage): 14 | * kmacro.el (kmacro-edit-lossage): 15 | * edmacro.el (edit-kbd-macro): Fix docstring, lossage is now 300 keys. 16 | 17 | (Rather than anything involving "ditto" and suchlike.) 18 | --------------------------------------------------------------------------------