X-Git-Url: https://code.delx.au/gnu-emacs/blobdiff_plain/cbd447e1cdbbebcd2a04144194138bb7936dea9d..c87c2cad94ab0570846015dcef91a38e84317be9:/lisp/tempo.el diff --git a/lisp/tempo.el b/lisp/tempo.el index 92e1ea78da..beb4dbabaa 100644 --- a/lisp/tempo.el +++ b/lisp/tempo.el @@ -1,6 +1,6 @@ ;;; tempo.el --- Flexible template insertion -;; Copyright (C) 1994-1995, 2001-2015 Free Software Foundation, Inc. +;; Copyright (C) 1994-1995, 2001-2016 Free Software Foundation, Inc. ;; Author: David KÃ¥gedal ;; Created: 16 Feb 1994 @@ -147,7 +147,7 @@ disappears at the next keypress; otherwise, it remains forever." "List of functions to run when inserting a string. Each function is called with a single arg, STRING and should return another string. This could be used for making all strings upcase by -setting it to '(upcase), for example.") +setting it to (upcase), for example.") (defvar tempo-tags nil "An association list with tags and corresponding templates.") @@ -270,7 +270,7 @@ The elements in ELEMENTS can be of several types: - nil: It is ignored. - Anything else: It is evaluated and the result is treated as an element to be inserted. One additional tag is useful for these - cases. If an expression returns a list '(l foo bar), the elements + cases. If an expression returns a list (l foo bar), the elements after `l' will be inserted according to the usual rules. This makes it possible to return several elements from one expression." (let* ((template-name (intern (concat "tempo-template-" @@ -759,7 +759,3 @@ space bar, and looks something like this: (provide 'tempo) ;;; tempo.el ends here - -;; Local Variables: -;; coding: utf-8 -;; End: