From: Juanma Barranquero Date: Thu, 8 May 2008 03:52:53 +0000 (+0000) Subject: (robin-package-alist): Fix typo in docstring. X-Git-Tag: emacs-pretest-23.0.90~5726 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=10c824b02e9d926ca0897dae3085a694acbc1e63;p=emacs.git (robin-package-alist): Fix typo in docstring. (robin-current-package-name): Doc fix. (robin-activate): Don't use `iff' in docstring. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 3dc7b942e1c..68105177dd1 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,7 +1,25 @@ +2008-05-08 Juanma Barranquero + + * abbrev.el (define-abbrev-table): + * composite.el (toggle-auto-composition): + * json.el (json-alist-p, json-plist-p): + * minibuffer.el (completion-table-with-predicate): + * ps-mule.el (ps-mule-external-libraries): + * emacs-lisp/advice.el (ad-special-form-p): + * emacs-lisp/autoload.el (autoload-generate-file-autoloads): + * eshell/em-smart.el (eshell-review-quick-commands): + * progmodes/python.el (python-comment-line-p, python-blank-line-p) + (python-skip-out, python-check-comint-prompt): + Don't use `iff' in docstrings. + + * international/robin.el (robin-package-alist): Fix typo in docstring. + (robin-current-package-name): Doc fix. + (robin-activate): Don't use `iff' in docstring. + 2008-05-07 Eric S. Raymond - * vc.el, vc-dispatcher.el: VC-Dired support removed. The code - uses a ewoc-based implementation now. + * vc.el, vc-dispatcher.el: VC-Dired support removed. + The code uses a ewoc-based implementation now. * vc-hooks.el: Support for Meta-CVS has been removed. 2008-05-07 Stefan Monnier @@ -35,7 +53,7 @@ further from vc.el. * vc.el (vc-dir-mode): Move VC-specific context menu entries here. -2008-05-06 Wilson Snyder +2008-05-06 Wilson Snyder * verilog-mode.el (verilog-getopt-file): Cleanup warning message format. (verilog-auto, verilog-auto-arg, verilog-auto-ascii-enum) @@ -82,8 +100,8 @@ 2008-05-05 Eric S. Raymond - * vc.el (vc-deduce-fileset): Lift all the policy and UI - stuff out of this function, move it to vc-dispatcher-selection-set. + * vc.el (vc-deduce-fileset): Lift all the policy and UI stuff + out of this function, move it to vc-dispatcher-selection-set. 2008-05-05 Sam Steingold @@ -165,7 +183,7 @@ The separation is not yet completely clean, but it's a good start. * vc.el: This file is about 1700 lines shorter now. Remove obsolete logentry-check from the backend API. - * vc-sccs.el (vc-sccs-logentry-check): Remove . This was the only + * vc-sccs.el (vc-sccs-logentry-check): Remove. This was the only implementation of the logentry-check method, and it guarded against a log length limit that has probably been obsolete for 15 years (!). @@ -179,12 +197,12 @@ 2008-05-02 Eric S. Raymond * vc-arch.el, vc-bzr.el, vc-cvs.el, vc-git.el, vc-hg.el, - vc-hooks.el, vc-mcvs.el, vc-mtn.el, vc-rcs.el, vc-sccs.el, - vc-svn.el, vc.el: (vc-*-checkout-model): Make sure every backend + * vc-hooks.el, vc-mcvs.el, vc-mtn.el, vc-rcs.el, vc-sccs.el, + * vc-svn.el, vc.el (vc-*-checkout-model): Make sure every backend has one of these and that all are called in compatible ways. * vc-arch.el, vc-bzr.el, vc-cvs.el, vc-git.el, vc-hg.el, - vc-hooks.el, vc-mcvs.el, vc-mtn.el, vc-rcs.el, vc-sccs.el, - vc-svn.el, vc.el: (vc-*-revision-granularity): Make sure every + * vc-hooks.el, vc-mcvs.el, vc-mtn.el, vc-rcs.el, vc-sccs.el, + * vc-svn.el, vc.el (vc-*-revision-granularity): Make sure every backend has one of these. 2008-05-02 Stefan Monnier diff --git a/lisp/international/robin.el b/lisp/international/robin.el index d56a1a6c578..5e563481fcb 100644 --- a/lisp/international/robin.el +++ b/lisp/international/robin.el @@ -251,7 +251,7 @@ (defvar robin-package-alist nil "List of robin packages. -A robin pacakge is of the form (NAME DOCSTRING &rest RULES). +A robin package is of the form (NAME DOCSTRING &rest RULES). NAME is a string specifying a particular robin package. DOCSTRING is a documentation string for the robin package. @@ -271,7 +271,7 @@ For example, if you evaluate the following, this robin package will be the following. (\"test\" \"Uppercase input characters\" - (?a \"A\" + (?a \"A\" (?b \"AB\") (?c \"AC\" (?d \"ACD\") @@ -377,7 +377,7 @@ Internal use only." (defvar robin-current-package-name nil "String representing the name of the current robin package. -Nil means no packages is selected.") +A nil value means no package is selected.") (make-variable-buffer-local 'robin-current-package-name) ;;;###autoload @@ -399,7 +399,7 @@ Nil means no packages is selected.") (defun robin-activate (&optional arg) "Activate robin input method. -With ARG, activate robin input method iff ARG is positive. +With ARG, activate robin input method if and only if ARG is positive. While this input method is active, the variable `input-method-function' is bound to the function `robin-input-method'."