From: Karl Heuer Date: Thu, 20 Nov 1997 21:47:12 +0000 (+0000) Subject: (help-with-tutorial-alist): New variable. X-Git-Tag: emacs-20.3~2787 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=c822b44bedde28187ecc15fd7c771f368709a975;p=emacs.git (help-with-tutorial-alist): New variable. (help-with-tutorial): Use help-with-tutorial-alist to read a language name, and also to find the tutorial file for a language. --- diff --git a/lisp/help.el b/lisp/help.el index d4a007a2189..a7d0155c89c 100644 --- a/lisp/help.el +++ b/lisp/help.el @@ -137,19 +137,30 @@ Commands: (interactive) nil) +(defvar help-with-tutorial-alist + '(("German" . "TUTORIAL.de") + ("Korean" . "TUTORIAL.kr") + ("Japanese" . "TUTORIAL.jp") + ("Thai" . "TUTORIAL.th") + ("English" . "TUTORIAL")) + "Alist mapping language names to their translated Emacs tutorial files.") + (defun help-with-tutorial (&optional arg) "Select the Emacs learn-by-doing tutorial. If there is a tutorial version written in the language of the selected language environment, that version is used. If there's no tutorial in that language, `TUTORIAL' is selected. -With arg, you are asked to select which language." +With arg, you are asked to choose which language." (interactive "P") (let (lang filename file) (if arg - (or (setq lang (read-language-name 'tutorial "Language: ")) - (error "No tutorial file of the specified language")) + (or (setq lang + (let* ((completion-ignore-case t)) + (completing-read "Language: " help-with-tutorial-alist + nil t))) + (error "No tutorial file in language")) (setq lang current-language-environment)) - (setq filename (or (get-language-info lang 'tutorial) + (setq filename (or (cdr (assoc lang help-with-tutorial-alist)) "TUTORIAL")) (setq file (expand-file-name (concat "~/" filename))) (delete-other-windows)