Как организован исходный код GNU Emacs?


43

Как организован исходный код GNU Emacs? Каковы основные модули и их функциональность? Где я могу найти официальное, актуальное описание архитектуры и ее исходный код?

Ответы:


44

Будучи официальным проектом GNU, он строго придерживается стандартов кодирования GNU и структуры каталогов. Тем не менее, если вы исследуете исходное дерево, я бы начал, как и в большинстве проектов, с файла README в корневом каталоге.

Начиная с этого файла, есть несколько подкаталогов:

`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
Также см. Руководство по хакерам
knarf,

1
@knarf: хорошо, это, по крайней мере, объясняет некоторые ужасные злоупотребления макросами, которые я вижу всякий раз, когда я смотрю на код C ;-)
stsquad

1
Спасибо, есть ли ссылка на последнюю версию файла README (предположительно, HEAD ref главной ветки или подсказку, связанную с последней стабильной версией), которую мы могли бы включить в этот ответ?
Амелио Васкес-Рейна

2
@ user815423426: теперь миграция git завершена, я связался с этой страницей.
stsquad

1
Emacs все еще может компилировать пользователя MSDOS !?
Эдгар Арутюнян
Используя наш сайт, вы подтверждаете, что прочитали и поняли нашу Политику в отношении файлов cookie и Политику конфиденциальности.
Licensed under cc by-sa 3.0 with attribution required.