diff options
| author | Kim F. Storm | 2008-02-29 23:42:52 +0000 |
|---|---|---|
| committer | Kim F. Storm | 2008-02-29 23:42:52 +0000 |
| commit | 92b2e7a30e9fa30e444e775986eac922cafc0e45 (patch) | |
| tree | e9d5f43c39fdc2d68ba53a5f2ab477b55141f78a | |
| parent | ac1818b551063394aa644c103d6bd3fb48f9cb63 (diff) | |
| download | emacs-92b2e7a30e9fa30e444e775986eac922cafc0e45.tar.gz emacs-92b2e7a30e9fa30e444e775986eac922cafc0e45.zip | |
Rename describe-project to describe-gnu-project.
| -rw-r--r-- | lisp/ChangeLog | 6 | ||||
| -rw-r--r-- | lisp/startup.el | 8 |
2 files changed, 10 insertions, 4 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 1fc30bce6c4..8eea2ef5bde 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,5 +1,11 @@ | |||
| 1 | 2008-02-29 Kim F. Storm <storm@cua.dk> | 1 | 2008-02-29 Kim F. Storm <storm@cua.dk> |
| 2 | 2 | ||
| 3 | * emulation/cua-base.el (cua-remap-control-v) | ||
| 4 | (cua-remap-control-z): New defcustoms. | ||
| 5 | (cua-mode): Add them to set-after property. | ||
| 6 | (cua--init-keymaps): Use them. | ||
| 7 | Add C-x/C-c home, end, next, and prior to cua--prefix-repeat-keymap. | ||
| 8 | |||
| 3 | * help.el (view-emacs-todo): Rename from view-todo. | 9 | * help.el (view-emacs-todo): Rename from view-todo. |
| 4 | (describe-gnu-project): Rename from describe-project. Users changed. | 10 | (describe-gnu-project): Rename from describe-project. Users changed. |
| 5 | (view-help-file): New helper function. | 11 | (view-help-file): New helper function. |
diff --git a/lisp/startup.el b/lisp/startup.el index 3e54e6f4e00..8ab56eee180 100644 --- a/lisp/startup.el +++ b/lisp/startup.el | |||
| @@ -1177,7 +1177,7 @@ If this is nil, no message will be displayed." | |||
| 1177 | '("GNU/Linux" | 1177 | '("GNU/Linux" |
| 1178 | (lambda (button) (browse-url "http://www.gnu.org/gnu/linux-and-gnu.html")) | 1178 | (lambda (button) (browse-url "http://www.gnu.org/gnu/linux-and-gnu.html")) |
| 1179 | "Browse http://www.gnu.org/gnu/linux-and-gnu.html") | 1179 | "Browse http://www.gnu.org/gnu/linux-and-gnu.html") |
| 1180 | '("GNU" (lambda (button) (describe-project)) | 1180 | '("GNU" (lambda (button) (describe-gnu-project)) |
| 1181 | "Display info on the GNU project"))) | 1181 | "Display info on the GNU project"))) |
| 1182 | " operating system.\n" | 1182 | " operating system.\n" |
| 1183 | :face variable-pitch "To quit a partially entered command, type " | 1183 | :face variable-pitch "To quit a partially entered command, type " |
| @@ -1236,7 +1236,7 @@ Each element in the list should be a list of strings or pairs | |||
| 1236 | '("GNU/Linux" | 1236 | '("GNU/Linux" |
| 1237 | (lambda (button) (browse-url "http://www.gnu.org/gnu/linux-and-gnu.html")) | 1237 | (lambda (button) (browse-url "http://www.gnu.org/gnu/linux-and-gnu.html")) |
| 1238 | "Browse http://www.gnu.org/gnu/linux-and-gnu.html") | 1238 | "Browse http://www.gnu.org/gnu/linux-and-gnu.html") |
| 1239 | '("GNU" (lambda (button) (describe-project)) | 1239 | '("GNU" (lambda (button) (describe-gnu-project)) |
| 1240 | "Display info on the GNU project."))) | 1240 | "Display info on the GNU project."))) |
| 1241 | " operating system.\n" | 1241 | " operating system.\n" |
| 1242 | :face (lambda () | 1242 | :face (lambda () |
| @@ -1262,7 +1262,7 @@ Each element in the list should be a list of strings or pairs | |||
| 1262 | (goto-char (point-min)))) | 1262 | (goto-char (point-min)))) |
| 1263 | "\tHow to contribute improvements to Emacs\n" | 1263 | "\tHow to contribute improvements to Emacs\n" |
| 1264 | "\n" | 1264 | "\n" |
| 1265 | :link ("GNU and Freedom" (lambda (button) (describe-project))) | 1265 | :link ("GNU and Freedom" (lambda (button) (describe-gnu-project))) |
| 1266 | "\tWhy we developed GNU Emacs, and the GNU operating system\n" | 1266 | "\tWhy we developed GNU Emacs, and the GNU operating system\n" |
| 1267 | :link ("Absence of Warranty" (lambda (button) (describe-no-warranty))) | 1267 | :link ("Absence of Warranty" (lambda (button) (describe-no-warranty))) |
| 1268 | "\tGNU Emacs comes with " | 1268 | "\tGNU Emacs comes with " |
| @@ -1872,7 +1872,7 @@ Type \\[describe-distribution] for information on ")) | |||
| 1872 | (insert "\tHow to contribute improvements to Emacs\n\n") | 1872 | (insert "\tHow to contribute improvements to Emacs\n\n") |
| 1873 | 1873 | ||
| 1874 | (insert-button "GNU and Freedom" | 1874 | (insert-button "GNU and Freedom" |
| 1875 | 'action (lambda (button) (describe-project)) | 1875 | 'action (lambda (button) (describe-gnu-project)) |
| 1876 | 'follow-link t) | 1876 | 'follow-link t) |
| 1877 | (insert "\t\tWhy we developed GNU Emacs and the GNU system\n") | 1877 | (insert "\t\tWhy we developed GNU Emacs and the GNU system\n") |
| 1878 | 1878 | ||