Come è organizzato il codice sorgente di GNU Emacs?


43

Come è organizzato il codice sorgente di GNU Emacs? Quali sono i moduli principali e le loro funzionalità? Dove posso trovare una descrizione ufficiale aggiornata dell'architettura e del suo codice sorgente?

Risposte:


44

Essendo un progetto GNU ufficiale, aderisce strettamente agli standard di codifica GNU e al layout delle directory. Detto questo, se stai esplorando l'albero dei sorgenti, comincerei, come con la maggior parte dei progetti, con il file README nella directory principale.

Da quel file in poi, ci sono diverse sottodirectory:

`src'       holds the C code for Emacs (the Emacs Lisp interpreter and
            its primitives, the redisplay code, and some basic editing
            functions).
`lisp'      holds the Emacs Lisp code for Emacs (almost everything else).
`leim'      holds the library of Emacs input methods, Lisp code and
            auxiliary data files required to type international characters
            which can't be directly produced by your keyboard.
`lib-src'   holds the source code for some utility programs for use by or
            with Emacs, like movemail and etags.
`etc'       holds miscellaneous architecture-independent data files
            Emacs uses, like the tutorial text and the Zippy, the Pinhead
            quote database. The contents of the `lisp', `leim', `info',
            `man', `lispref', and `lispintro' subdirectories are
            architecture-independent too.
`info'      holds the Info documentation tree for Emacs.
`doc/emacs' holds the source code for the Emacs Manual.  If you modify the
            manual sources, you will need the `makeinfo' program to produce
            an updated manual. `makeinfo' is part of the GNU Texinfo
            package; you need version 4.6 or later of Texinfo.
`doc/lispref'   holds the source code for the Emacs Lisp reference manual.
`doc/lispintro' holds the source code for the Introduction to Programming
                in Emacs Lisp manual.
`msdos'     holds configuration files for compiling Emacs under MS-DOS.
`nt'        holds various command files and documentation files that pertain
            to building and running Emacs on Windows 9X/ME/NT/2000/XP.
`test'      holds tests for various aspects of Emacs's functionality.

7
Inoltre, consulta la Guida per gli hacker sulla wiki emacswiki.org/emacs/HackerGuide
knarf,

1
@knarf: beh, questo spiega almeno un po 'dell'odioso abuso di macro che vedo ogni volta che guardo il codice C ;-)
stsquad,

1
Grazie, esiste un collegamento all'ultima versione del file README (presumibilmente il riferimento HEAD del ramo master o il suggerimento associato all'ultima versione stabile) che potremmo includere in questa risposta?
Amelio Vazquez-Reina,

2
@ user815423426: ora la migrazione git è completa Ho collegato a quella pagina.
stsquad,

1
Emacs può ancora compilare l'utente MSDOS !?
Edgar Aroutiounian,
Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.