diff lispref/os.texi @ 12282:586e3ea81792

updates for version 19.29 made by melissa; also needed to check out files so two-volume formatting could be accomplished.
author Melissa Weisshaus <melissa@gnu.org>
date Fri, 16 Jun 1995 19:17:59 +0000
parents a6eb5f12b0f3
children a3e8c1d2492f
line wrap: on
line diff
--- a/lispref/os.texi	Fri Jun 16 18:11:46 1995 +0000
+++ b/lispref/os.texi	Fri Jun 16 19:17:59 1995 +0000
@@ -1027,7 +1027,7 @@
 arguments, see the table above under @code{decode-time}.
 
 Year numbers less than 100 are treated just like other year numbers.  If
-you them to stand for years above 1900, you must alter them yourself
+you want them to stand for years above 1900, you must alter them yourself
 before you call @code{encode-time}.
 
 The optional argument @var{zone} defaults to the current time zone and
@@ -1321,6 +1321,7 @@
 to turn the character that follows into a Hyper character:
 
 @example
+@group
 (defun hyperify (prompt)
   (let ((e (read-event)))
     (vector (if (numberp e)
@@ -1333,11 +1334,14 @@
   (let ((symbol (if (symbolp e) e (car e))))
     (setq symbol (intern (concat string
                                  (symbol-name symbol))))
+@end group
+@group
     (if (symbolp e)
         symbol
       (cons symbol (cdr e)))))
 
 (define-key function-key-map "\C-ch" 'hyperify)
+@end group
 @end example
 
 @pindex iso-transl