Mercurial > hg > xemacs-beta
diff lisp/hyperbole/kotl/kfile.el @ 70:131b0175ea99 r20-0b30
Import from CVS: tag r20-0b30
author | cvs |
---|---|
date | Mon, 13 Aug 2007 09:02:59 +0200 |
parents | c53a95d3c46d |
children | 8619ce7e4c50 |
line wrap: on
line diff
--- a/lisp/hyperbole/kotl/kfile.el Mon Aug 13 09:00:04 2007 +0200 +++ b/lisp/hyperbole/kotl/kfile.el Mon Aug 13 09:02:59 2007 +0200 @@ -8,8 +8,7 @@ ;; AUTHOR: Bob Weiner & Kellie Clark ;; ;; ORIG-DATE: 10/31/93 -;; LAST-MOD: 6-Mar-97 at 01:17:51 by Bob Weiner - +;; LAST-MOD: 1-Nov-95 at 00:46:41 by Bob Weiner ;;; ************************************************************************ ;;; Other required Elisp libraries ;;; ************************************************************************ @@ -153,13 +152,13 @@ Return the new view." (let (ver-string) (cond ((not (bufferp buffer)) - (error "(kfile:read): Argument must be a buffer, `%s'." buffer)) + (error "(kfile:read): Argument must be a buffer, '%s'." buffer)) ((not existing-file-p) (kfile:create buffer)) ((progn (set-buffer buffer) (not (setq ver-string (kfile:is-p)))) - (error "(kfile:read): `%s' is not a koutline file." buffer)) + (error "(kfile:read): '%s' is not a koutline file." buffer)) ((equal ver-string "Kotl-4.0") (kfile:read-v4-or-v3 buffer nil)) ((equal ver-string "Kotl-3.0") @@ -168,7 +167,7 @@ (kfile:read-v2 buffer)) ((equal ver-string "Kotl-1.0") (error "(kfile:read): V1 koutlines are no longer supported")) - (t (error "(kfile:read): `%s' has unknown kotl version, %s." + (t (error "(kfile:read): '%s' has unknown kotl version, %s." buffer ver-string))))) (defun kfile:read-v2 (buffer) @@ -324,7 +323,7 @@ (set-marker opoint nil) nil))) -;;; Next function is adapted from `file-write' of GNU Emacs 19, copyright FSF, +;;; Next function is adapted from 'file-write' of GNU Emacs 19, copyright FSF, ;;; under the GPL. (defun kfile:write (file) "Write current outline to FILE." @@ -530,6 +529,6 @@ ;;; ************************************************************************ (defvar kfile:escape-newlines t - "Value of print-escape-newlines used by `kfile:print-to-string' function.") + "Value of print-escape-newlines used by 'kfile:print-to-string' function.") (provide 'kfile)