From: Kim F. Storm Date: Fri, 29 Feb 2008 23:42:52 +0000 (+0000) Subject: Rename describe-project to describe-gnu-project. X-Git-Tag: emacs-pretest-23.0.90~7557 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=92b2e7a30e9fa30e444e775986eac922cafc0e45;p=emacs.git Rename describe-project to describe-gnu-project. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 1fc30bce6c4..8eea2ef5bde 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,5 +1,11 @@ 2008-02-29 Kim F. Storm + * emulation/cua-base.el (cua-remap-control-v) + (cua-remap-control-z): New defcustoms. + (cua-mode): Add them to set-after property. + (cua--init-keymaps): Use them. + Add C-x/C-c home, end, next, and prior to cua--prefix-repeat-keymap. + * help.el (view-emacs-todo): Rename from view-todo. (describe-gnu-project): Rename from describe-project. Users changed. (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." '("GNU/Linux" (lambda (button) (browse-url "http://www.gnu.org/gnu/linux-and-gnu.html")) "Browse http://www.gnu.org/gnu/linux-and-gnu.html") - '("GNU" (lambda (button) (describe-project)) + '("GNU" (lambda (button) (describe-gnu-project)) "Display info on the GNU project"))) " operating system.\n" :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 '("GNU/Linux" (lambda (button) (browse-url "http://www.gnu.org/gnu/linux-and-gnu.html")) "Browse http://www.gnu.org/gnu/linux-and-gnu.html") - '("GNU" (lambda (button) (describe-project)) + '("GNU" (lambda (button) (describe-gnu-project)) "Display info on the GNU project."))) " operating system.\n" :face (lambda () @@ -1262,7 +1262,7 @@ Each element in the list should be a list of strings or pairs (goto-char (point-min)))) "\tHow to contribute improvements to Emacs\n" "\n" - :link ("GNU and Freedom" (lambda (button) (describe-project))) + :link ("GNU and Freedom" (lambda (button) (describe-gnu-project))) "\tWhy we developed GNU Emacs, and the GNU operating system\n" :link ("Absence of Warranty" (lambda (button) (describe-no-warranty))) "\tGNU Emacs comes with " @@ -1872,7 +1872,7 @@ Type \\[describe-distribution] for information on ")) (insert "\tHow to contribute improvements to Emacs\n\n") (insert-button "GNU and Freedom" - 'action (lambda (button) (describe-project)) + 'action (lambda (button) (describe-gnu-project)) 'follow-link t) (insert "\t\tWhy we developed GNU Emacs and the GNU system\n")