diff options
| author | Eli Zaretskii | 2000-08-15 08:23:20 +0000 |
|---|---|---|
| committer | Eli Zaretskii | 2000-08-15 08:23:20 +0000 |
| commit | 13e3dc8f181c2e38f14ed31f24d85b7698592320 (patch) | |
| tree | 2a9e58a613da6d626ed9f8b1921f41bd68dc8b7b | |
| parent | 13f5a20e255cb304667ead85eb882848bdee0c64 (diff) | |
| download | emacs-13e3dc8f181c2e38f14ed31f24d85b7698592320.tar.gz emacs-13e3dc8f181c2e38f14ed31f24d85b7698592320.zip | |
(Authors): New node.
| -rw-r--r-- | man/programs.texi | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/man/programs.texi b/man/programs.texi index 4aefe6b6d25..f675ba4bdb3 100644 --- a/man/programs.texi +++ b/man/programs.texi | |||
| @@ -68,6 +68,7 @@ bocks of code selectively. | |||
| 68 | * Hideshow:: Displaying blocks selectively. | 68 | * Hideshow:: Displaying blocks selectively. |
| 69 | * Documentation:: Getting documentation of functions you plan to call. | 69 | * Documentation:: Getting documentation of functions you plan to call. |
| 70 | * Change Log:: Maintaining a change history for your program. | 70 | * Change Log:: Maintaining a change history for your program. |
| 71 | * Authors:: Maintaining an @file{AUTHORS} file. | ||
| 71 | * Tags:: Go direct to any function in your program in one | 72 | * Tags:: Go direct to any function in your program in one |
| 72 | command. Tags remembers which file it is in. | 73 | command. Tags remembers which file it is in. |
| 73 | * Imenu:: Making buffer indexes as menus. | 74 | * Imenu:: Making buffer indexes as menus. |
| @@ -1755,6 +1756,24 @@ of entries with either the current or old-style date formats. | |||
| 1755 | Version control systems are another way to keep track of changes in your | 1756 | Version control systems are another way to keep track of changes in your |
| 1756 | program and keep a change log. @xref{Log Buffer}. | 1757 | program and keep a change log. @xref{Log Buffer}. |
| 1757 | 1758 | ||
| 1759 | @node Authors | ||
| 1760 | @section @file{AUTHORS} files | ||
| 1761 | @cindex @file{AUTHORS} file | ||
| 1762 | |||
| 1763 | Programs which have many contributors usually include a file named | ||
| 1764 | @file{AUTHORS} in their distribution, which lists the individual | ||
| 1765 | contributions. Emacs has a special command for maintaining the | ||
| 1766 | @file{AUTHORS} file that is part of the Emacs distribution. | ||
| 1767 | |||
| 1768 | @findex authors | ||
| 1769 | The @kbd{M-x authors} command prompts for the name of the root of the | ||
| 1770 | Emacs source directory. It then scans @file{ChageLog} files and Lisp | ||
| 1771 | source files under that directory for information about authors of | ||
| 1772 | individual packages and people who made changes in source files, and | ||
| 1773 | puts the information it gleans into a buffer named @samp{*Authors*}. | ||
| 1774 | You can then edit the contents of that buffer and merge it with the | ||
| 1775 | exisiting @file{AUTHORS} file. | ||
| 1776 | |||
| 1758 | @node Tags | 1777 | @node Tags |
| 1759 | @section Tags Tables | 1778 | @section Tags Tables |
| 1760 | @cindex tags table | 1779 | @cindex tags table |