diff options
author | Pavel Janík <Pavel@Janik.cz> | 2001-07-16 12:23:00 +0000 |
---|---|---|
committer | Pavel Janík <Pavel@Janik.cz> | 2001-07-16 12:23:00 +0000 |
commit | e8af40eed41d6c61ea6a0649512c4b09afcb1bfa (patch) | |
tree | 588654cb6c38a93c432bfae53ccbf36569e3cf23 /lisp/textmodes/two-column.el | |
parent | 4cba8c0bdcce038e6966aab82d08859d796e69d0 (diff) | |
download | emacs-e8af40eed41d6c61ea6a0649512c4b09afcb1bfa.tar.gz |
Some fixes to follow coding conventions.
Diffstat (limited to 'lisp/textmodes/two-column.el')
-rw-r--r-- | lisp/textmodes/two-column.el | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/lisp/textmodes/two-column.el b/lisp/textmodes/two-column.el index a4c965a6966..b231a285675 100644 --- a/lisp/textmodes/two-column.el +++ b/lisp/textmodes/two-column.el @@ -5,6 +5,8 @@ ;; Author: Daniel Pfeiffer <occitan@esperanto.org> ;; Adapted-By: ESR, Daniel Pfeiffer +;; This file is part of GNU Emacs. + ;; Esperanto: English: ;; ^Ci dosiero estas ero de GNU Emacs. This file is part of GNU Emacs. @@ -33,6 +35,7 @@ ;; Free Software Foundation, 59 Temple Place - Suite 330 ;; Boston, MA 02111-1307, USA. +;;; Commentary: ;;; Komentario: Commentary: @@ -284,7 +287,7 @@ minus this value." (kill-local-variable '2C-mode) (kill-local-variable 'mode-line-format) nil))) - (if req (error "You must first set two-column minor mode.")))) + (if req (error "You must first set two-column minor mode")))) @@ -385,7 +388,7 @@ accepting the proposed default buffer. (set-buffer b2) (and (2C-other) (not (eq b1 (2C-other))) - (error "Buffer already associated with buffer `%s'." + (error "Buffer already associated with buffer `%s'" (buffer-name (2C-other)))) (setq b1 (and (assq '2C-window-width (buffer-local-variables)) 2C-window-width))) |