diff options
| author | Kim F. Storm | 2008-03-06 00:08:01 +0000 |
|---|---|---|
| committer | Kim F. Storm | 2008-03-06 00:08:01 +0000 |
| commit | 015b0d507d052f715d4dbf8df7c63c624372b427 (patch) | |
| tree | c2861fc1794971cf2f1baf79347a8965e9a4c9cb | |
| parent | 4e44f5ceebe1c399e35488662ce975e0c885ff9e (diff) | |
| download | emacs-015b0d507d052f715d4dbf8df7c63c624372b427.tar.gz emacs-015b0d507d052f715d4dbf8df7c63c624372b427.zip | |
(describe-gnu-project): Rename from describe-project. Change users.
| -rw-r--r-- | lisp/menu-bar.el | 2 | ||||
| -rw-r--r-- | lisp/startup.el | 8 |
2 files changed, 5 insertions, 5 deletions
diff --git a/lisp/menu-bar.el b/lisp/menu-bar.el index 4280dad5962..38479b676ab 100644 --- a/lisp/menu-bar.el +++ b/lisp/menu-bar.el | |||
| @@ -1341,7 +1341,7 @@ key, a click, or a menu-item")) | |||
| 1341 | :help "Read the Introduction to Emacs Lisp Programming")) | 1341 | :help "Read the Introduction to Emacs Lisp Programming")) |
| 1342 | 1342 | ||
| 1343 | (define-key menu-bar-help-menu [about-gnu-project] | 1343 | (define-key menu-bar-help-menu [about-gnu-project] |
| 1344 | '(menu-item "About GNU" describe-project | 1344 | '(menu-item "About GNU" describe-gnu-project |
| 1345 | :help "About the GNU System, GNU Project, and GNU/Linux")) | 1345 | :help "About the GNU System, GNU Project, and GNU/Linux")) |
| 1346 | (define-key menu-bar-help-menu [about-emacs] | 1346 | (define-key menu-bar-help-menu [about-emacs] |
| 1347 | '(menu-item "About Emacs" about-emacs | 1347 | '(menu-item "About Emacs" about-emacs |
diff --git a/lisp/startup.el b/lisp/startup.el index 4f66a1cf501..55f5e98c06c 100644 --- a/lisp/startup.el +++ b/lisp/startup.el | |||
| @@ -1148,7 +1148,7 @@ regardless of the value of this variable." | |||
| 1148 | '("GNU/Linux" | 1148 | '("GNU/Linux" |
| 1149 | (lambda (button) (browse-url "http://www.gnu.org/gnu/linux-and-gnu.html")) | 1149 | (lambda (button) (browse-url "http://www.gnu.org/gnu/linux-and-gnu.html")) |
| 1150 | "Browse http://www.gnu.org/gnu/linux-and-gnu.html") | 1150 | "Browse http://www.gnu.org/gnu/linux-and-gnu.html") |
| 1151 | '("GNU" (lambda (button) (describe-project)) | 1151 | '("GNU" (lambda (button) (describe-gnu-project)) |
| 1152 | "Display info on the GNU project"))) | 1152 | "Display info on the GNU project"))) |
| 1153 | " operating system.\n" | 1153 | " operating system.\n" |
| 1154 | :face variable-pitch "To quit a partially entered command, type " | 1154 | :face variable-pitch "To quit a partially entered command, type " |
| @@ -1207,7 +1207,7 @@ Each element in the list should be a list of strings or pairs | |||
| 1207 | '("GNU/Linux" | 1207 | '("GNU/Linux" |
| 1208 | (lambda (button) (browse-url "http://www.gnu.org/gnu/linux-and-gnu.html")) | 1208 | (lambda (button) (browse-url "http://www.gnu.org/gnu/linux-and-gnu.html")) |
| 1209 | "Browse http://www.gnu.org/gnu/linux-and-gnu.html") | 1209 | "Browse http://www.gnu.org/gnu/linux-and-gnu.html") |
| 1210 | '("GNU" (lambda (button) (describe-project)) | 1210 | '("GNU" (lambda (button) (describe-gnu-project)) |
| 1211 | "Display info on the GNU project."))) | 1211 | "Display info on the GNU project."))) |
| 1212 | " operating system.\n" | 1212 | " operating system.\n" |
| 1213 | :face (lambda () | 1213 | :face (lambda () |
| @@ -1222,7 +1222,7 @@ Each element in the list should be a list of strings or pairs | |||
| 1222 | (lambda () emacs-copyright) | 1222 | (lambda () emacs-copyright) |
| 1223 | "\n\n" | 1223 | "\n\n" |
| 1224 | :face variable-pitch | 1224 | :face variable-pitch |
| 1225 | :link ("GNU and Freedom" (lambda (button) (describe-project))) | 1225 | :link ("GNU and Freedom" (lambda (button) (describe-gnu-project))) |
| 1226 | "\tWhy we developed GNU Emacs, and the GNU operating system\n" | 1226 | "\tWhy we developed GNU Emacs, and the GNU operating system\n" |
| 1227 | :link ("Absence of Warranty" (lambda (button) (describe-no-warranty))) | 1227 | :link ("Absence of Warranty" (lambda (button) (describe-no-warranty))) |
| 1228 | "\tGNU Emacs comes with " | 1228 | "\tGNU Emacs comes with " |
| @@ -1816,7 +1816,7 @@ Type \\[describe-distribution] for information on ")) | |||
| 1816 | (insert "To follow a link, click Mouse-1 on it, or move to it and type RET.\n\n") | 1816 | (insert "To follow a link, click Mouse-1 on it, or move to it and type RET.\n\n") |
| 1817 | 1817 | ||
| 1818 | (insert-button "GNU and Freedom" | 1818 | (insert-button "GNU and Freedom" |
| 1819 | 'action (lambda (button) (describe-project)) | 1819 | 'action (lambda (button) (describe-gnu-project)) |
| 1820 | 'follow-link t) | 1820 | 'follow-link t) |
| 1821 | (insert "\t\tWhy we developed GNU Emacs and the GNU system\n") | 1821 | (insert "\t\tWhy we developed GNU Emacs and the GNU system\n") |
| 1822 | 1822 | ||