X-Git-Url: https://code.delx.au/gnu-emacs/blobdiff_plain/430d2ee2919b2d4693780f2474ba40148442d206..ef65424de8cae00209f6a0974245822602709df3:/lisp/obsolete/scribe.el diff --git a/lisp/obsolete/scribe.el b/lisp/obsolete/scribe.el index 026d1ca607..04dd7a9799 100644 --- a/lisp/obsolete/scribe.el +++ b/lisp/obsolete/scribe.el @@ -1,17 +1,19 @@ ;;; scribe.el --- scribe mode, and its idiosyncratic commands -;; Copyright (C) 1985, 2001, 2002, 2003, 2004, 2005, -;; 2006, 2007, 2008 Free Software Foundation, Inc. +;; Copyright (C) 1985, 2001-2014 Free Software Foundation, Inc. -;; Maintainer: FSF +;; Author: William Sommerfeld +;; (according to ack.texi) +;; Maintainer: emacs-devel@gnu.org ;; Keywords: wp +;; Obsolete-since: 22.1 ;; This file is part of GNU Emacs. -;; GNU Emacs is free software; you can redistribute it and/or modify +;; GNU Emacs is free software: you can redistribute it and/or modify ;; it under the terms of the GNU General Public License as published by -;; the Free Software Foundation; either version 3, or (at your option) -;; any later version. +;; the Free Software Foundation, either version 3 of the License, or +;; (at your option) any later version. ;; GNU Emacs is distributed in the hope that it will be useful, ;; but WITHOUT ANY WARRANTY; without even the implied warranty of @@ -19,9 +21,7 @@ ;; GNU General Public License for more details. ;; You should have received a copy of the GNU General Public License -;; along with GNU Emacs; see the file COPYING. If not, write to the -;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -;; Boston, MA 02110-1301, USA. +;; along with GNU Emacs. If not, see . ;;; Commentary: @@ -45,17 +45,17 @@ "Abbrev table used while in scribe mode.") (defcustom scribe-fancy-paragraphs nil - "*Non-nil makes Scribe mode use a different style of paragraph separation." + "Non-nil makes Scribe mode use a different style of paragraph separation." :type 'boolean :group 'scribe) (defcustom scribe-electric-quote nil - "*Non-nil makes insert of double quote use `` or '' depending on context." + "Non-nil makes insert of double quote use `` or '' depending on context." :type 'boolean :group 'scribe) (defcustom scribe-electric-parenthesis nil - "*Non-nil makes parenthesis char ( (]}> ) automatically insert its close + "Non-nil makes parenthesis char ( (]}> ) automatically insert its close if typed after an @Command form." :type 'boolean :group 'scribe) @@ -144,7 +144,9 @@ Interesting variables: (set (make-local-variable 'sentence-end) "\\([.?!]\\|@:\\)[]\"')}]*\\($\\| $\\|\t\\| \\)[ \t\n]*") (set (make-local-variable 'compile-command) - (concat "scribe " (buffer-file-name)))) + (concat "scribe " + (if buffer-file-name + (shell-quote-argument (buffer-file-name)))))) (defun scribe-tab () (interactive) @@ -324,5 +326,4 @@ preceding text is of the form @Command." (provide 'scribe) -;;; arch-tag: 64f454c4-7544-4ea2-9d14-f0b668f2cdc6 ;;; scribe.el ends here