diff options
| author | Po Lu | 2025-03-16 20:14:48 +0800 |
|---|---|---|
| committer | Po Lu | 2025-03-16 20:14:48 +0800 |
| commit | 66ea323f0d543b00bb83b418abf243b1105dd43d (patch) | |
| tree | 6088e9afc8893bb01176aa46a7010ce4a7db74ab | |
| parent | 5d02ca181daa2b3833a2b32157388a7b131955e8 (diff) | |
| parent | dcf3916e558d974aef6516e5709379fa3c762832 (diff) | |
| download | emacs-66ea323f0d543b00bb83b418abf243b1105dd43d.tar.gz emacs-66ea323f0d543b00bb83b418abf243b1105dd43d.zip | |
Merge from savannah/emacs-30
dcf3916e558 ; Doc fix for legacy keymap functions
227db70db98 ; * doc/misc/ede.texi (Top): Improve introduction.
| -rw-r--r-- | doc/lispref/keymaps.texi | 4 | ||||
| -rw-r--r-- | doc/misc/ede.texi | 14 |
2 files changed, 15 insertions, 3 deletions
diff --git a/doc/lispref/keymaps.texi b/doc/lispref/keymaps.texi index 76c5528952d..61e7398067a 100644 --- a/doc/lispref/keymaps.texi +++ b/doc/lispref/keymaps.texi | |||
| @@ -1844,6 +1844,8 @@ local keymap, or @code{nil} if it is undefined there. | |||
| 1844 | 1844 | ||
| 1845 | The argument @var{accept-defaults} controls checking for default bindings, | 1845 | The argument @var{accept-defaults} controls checking for default bindings, |
| 1846 | as in @code{lookup-key} (above). | 1846 | as in @code{lookup-key} (above). |
| 1847 | |||
| 1848 | Use @code{keymap-local-lookup} instead of this function. | ||
| 1847 | @end defun | 1849 | @end defun |
| 1848 | 1850 | ||
| 1849 | @defun global-key-binding key &optional accept-defaults | 1851 | @defun global-key-binding key &optional accept-defaults |
| @@ -1852,6 +1854,8 @@ current global keymap, or @code{nil} if it is undefined there. | |||
| 1852 | 1854 | ||
| 1853 | The argument @var{accept-defaults} controls checking for default bindings, | 1855 | The argument @var{accept-defaults} controls checking for default bindings, |
| 1854 | as in @code{lookup-key} (above). | 1856 | as in @code{lookup-key} (above). |
| 1857 | |||
| 1858 | Use @code{keymap-global-lookup} instead of this function. | ||
| 1855 | @end defun | 1859 | @end defun |
| 1856 | 1860 | ||
| 1857 | @defun event-convert-list list | 1861 | @defun event-convert-list list |
diff --git a/doc/misc/ede.texi b/doc/misc/ede.texi index 6b7f8700300..dc1845dc276 100644 --- a/doc/misc/ede.texi +++ b/doc/misc/ede.texi | |||
| @@ -71,14 +71,22 @@ modify this GNU manual.'' | |||
| 71 | @top EDE | 71 | @top EDE |
| 72 | @comment node-name, next, previous, up | 72 | @comment node-name, next, previous, up |
| 73 | 73 | ||
| 74 | @ede{} is the Emacs Development Environment: an Emacs extension that | 74 | @ede{} (Emacs Development Environment) is an Emacs extension that |
| 75 | simplifies building and debugging programs in Emacs. It attempts to | 75 | simplifies building and debugging programs in Emacs. @ede{} |
| 76 | emulate a typical IDE (Integrated Development Environment). @ede{} | ||
| 77 | can manage or create your makefiles and other building environment | 76 | can manage or create your makefiles and other building environment |
| 78 | duties, allowing you to concentrate on writing code rather than | 77 | duties, allowing you to concentrate on writing code rather than |
| 79 | support files. It aims to make it much easier for new programmers to | 78 | support files. It aims to make it much easier for new programmers to |
| 80 | learn and adopt GNU ways of doing things. | 79 | learn and adopt GNU ways of doing things. |
| 81 | 80 | ||
| 81 | In contrast to Emacs's built-in ``project'' support (@pxref{Projects,,, | ||
| 82 | emacs, GNU Emacs Manual}), which provides lightweight project management | ||
| 83 | features focused on file navigation and search, @ede{} offers a | ||
| 84 | structured approach to managing build systems, configuration files, and | ||
| 85 | project metadata. While built-in projects are well-suited to | ||
| 86 | general-purpose workflows, @ede{} is useful for projects using tools | ||
| 87 | like @samp{make}, @samp{automake}, or @samp{autoconf}, or that involve | ||
| 88 | managing multiple targets, include paths, and build configurations. | ||
| 89 | |||
| 82 | @ifnottex | 90 | @ifnottex |
| 83 | @insertcopying | 91 | @insertcopying |
| 84 | @end ifnottex | 92 | @end ifnottex |