aboutsummaryrefslogtreecommitdiff
path: root/src/guile/skribilo.scm
diff options
context:
space:
mode:
authorLudovic Courtès2015-03-11 11:13:20 +0100
committerLudovic Courtès2015-03-11 11:23:25 +0100
commit48a66db9dad53b1078756df775a4efd06d649e28 (patch)
treeacac0cd594466ffc7882fabe25438caacc86fb88 /src/guile/skribilo.scm
parent4425f9d10eeac36191f281dfd94f342bf7e2b15f (diff)
downloadskribilo-48a66db9dad53b1078756df775a4efd06d649e28.tar.gz
skribilo-48a66db9dad53b1078756df775a4efd06d649e28.tar.lz
skribilo-48a66db9dad53b1078756df775a4efd06d649e28.zip
Use quotes instead of backticks in user-facing messages.
Suggested by Benno Schulenberg <coordinator@translationproject.org>. * doc/modules/skribilo/documentation/api.scm, src/guile/skribilo.scm, src/guile/skribilo/condition.scm, src/guile/skribilo/engine/lout.scm, src/guile/skribilo/package/base.scm, src/guile/skribilo/package/jfp.scm, src/guile/skribilo/package/lncs.scm, src/guile/skribilo/package/pie.scm, src/guile/skribilo/package/slide/latex.scm, src/guile/skribilo/utils/compat.scm, src/guile/skribilo/ast.scm, src/guile/skribilo/biblio.scm, src/guile/skribilo/engine/html.scm, src/guile/skribilo/engine/info.scm, src/guile/skribilo/index.scm, src/guile/skribilo/package/web-book2.scm, src/guile/skribilo/reader/rss-2.scm, src/guile/skribilo/source.scm, src/guile/skribilo/utils/compat.scm, src/guile/skribilo/verify.scm: Change `foo' to 'foo'.
Diffstat (limited to 'src/guile/skribilo.scm')
-rw-r--r--src/guile/skribilo.scm13
1 files changed, 7 insertions, 6 deletions
diff --git a/src/guile/skribilo.scm b/src/guile/skribilo.scm
index 33c08fb..463be51 100644
--- a/src/guile/skribilo.scm
+++ b/src/guile/skribilo.scm
@@ -1,6 +1,7 @@
;;; skribilo.scm -- The Skribilo document processor.
;;;
-;;; Copyright 2005, 2006, 2007, 2008, 2009, 2011, 2012, 2013 Ludovic Courtès <ludo@gnu.org>
+;;; Copyright 2005, 2006, 2007, 2008, 2009, 2011, 2012, 2013,
+;;; 2015 Ludovic Courtès <ludo@gnu.org>
;;; Copyright 2003, 2004 Erick Gallesio - I3S-CNRS/ESSI <eg@unice.fr>
;;;
;;;
@@ -67,16 +68,16 @@ Process Skribilo document from file INPUT (or the standard input) using the
specified reader syntax, and produce its output using the specified engine.
"))
(display (_ "
- -R, --reader=READER Use READER to parse the input file, e.g., `skribe'
- (default) or `outline'."))
+ -R, --reader=READER Use READER to parse the input file, e.g., 'skribe'
+ (default) or 'outline'."))
(display (_ "
- -t, --target=ENGINE Use ENGINE as the output engine, e.g., `html'."))
+ -t, --target=ENGINE Use ENGINE as the output engine, e.g., 'html'."))
(display (_ "
-c, --custom=C=VAL Use VAL as the value of ENGINE's custom C."))
(display (_ "
-o, --output=FILE Write output to FILE."))
(display (_ "
- --compat=COMPAT Use COMPAT as the compatibility layer, e.g., `skribe'."))
+ --compat=COMPAT Use COMPAT as the compatibility layer, e.g., 'skribe'."))
(newline)
(display (_ "
-I, --doc-path=DIR Prepend DIR to the document include path."))
@@ -90,7 +91,7 @@ specified reader syntax, and produce its output using the specified engine.
-U, --sui-path=DIR Prepend DIR to the Skribe URL Index (SUI) search path."))
(newline)
(display (_ "
- -b, --base=BASE Strip BASE from all hyperlinks (`html' engine)."))
+ -b, --base=BASE Strip BASE from all hyperlinks ('html' engine)."))
(display (_ "
-e, --eval=EXPR Prepend EXPR to the list of expressions to be
evaluted before the input file is processed."))