Mercurial > hg > xemacs-beta
diff lisp/help.el @ 249:83b3d10dcba9 r20-5b23
Import from CVS: tag r20-5b23
author | cvs |
---|---|
date | Mon, 13 Aug 2007 10:19:09 +0200 |
parents | f220cc83d72e |
children | 677f6a0ee643 |
line wrap: on
line diff
--- a/lisp/help.el Mon Aug 13 10:18:22 2007 +0200 +++ b/lisp/help.el Mon Aug 13 10:19:09 2007 +0200 @@ -552,20 +552,20 @@ "Display info on how to obtain the latest version of XEmacs." (interactive) (find-file-read-only - (expand-file-name "DISTRIB" data-directory))) + (locate-data-file "DISTRIB"))) (defun describe-beta () "Display info on how to deal with Beta versions of XEmacs." (interactive) (find-file-read-only - (expand-file-name "BETA" data-directory)) + (locate-data-file "BETA")) (goto-char (point-min))) (defun describe-copying () "Display info on how you may redistribute copies of XEmacs." (interactive) (find-file-read-only - (expand-file-name "COPYING" data-directory)) + (locate-data-file "COPYING")) (goto-char (point-min))) (defun describe-pointer () @@ -577,7 +577,7 @@ "Display info on the GNU project." (interactive) (find-file-read-only - (expand-file-name "GNU" data-directory)) + (locate-data-file "GNU")) (goto-char (point-min))) (defun describe-no-warranty () @@ -660,7 +660,7 @@ (defun view-emacs-news () "Display info on recent changes to XEmacs." (interactive) - (find-file (expand-file-name "NEWS" data-directory))) + (find-file (locate-data-file "NEWS"))) (defun xemacs-www-page () "Go to the XEmacs World Wide Web page."