~ubuntu-branches/ubuntu/raring/muse-el/raring

« back to all changes in this revision

Viewing changes to lisp/muse-texinfo.el

  • Committer: Bazaar Package Importer
  • Author(s): Nicolai Spohrer
  • Date: 2008-06-14 15:53:54 UTC
  • mfrom: (1.1.5 upstream) (4.1.1 lenny)
  • Revision ID: james.westby@ubuntu.com-20080614155354-0oaitcwcadstwg1v
Tags: 3.12-1ubuntu1
* Merge with Debian unstable (LP: #239998), remaining changes:
  - Modified Maintainer field as per spec
  - Keep the GFDL manual:
    - Modified debian/rules to build the manual
    - Added copyright info about the manual in debian/copyright

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
;;; muse-texinfo.el --- publish entries to Texinfo format or PDF
2
2
 
3
 
;; Copyright (C) 2004, 2005, 2006, 2007 Free Software Foundation, Inc.
 
3
;; Copyright (C) 2004, 2005, 2006, 2007, 2008  Free Software Foundation, Inc.
4
4
 
5
5
;; This file is part of Emacs Muse.  It is not part of GNU Emacs.
6
6
 
133
133
    (comment-end     . "\n@end ignore\n")
134
134
    (rule            . "@sp 1")
135
135
    (no-break-space  . "@w{ }")
 
136
    (line-break      . "@*")
136
137
    (enddots         . "@enddots{}")
137
138
    (dots            . "@dots{}")
138
139
    (section         . "@chapter ")
200
201
 
201
202
(defun muse-texinfo-decide-specials (context)
202
203
  "Determine the specials to escape, depending on CONTEXT."
203
 
  (cond ((memq context '(underline literal emphasis email url url-desc image))
 
204
  (cond ((memq context '(underline literal emphasis email url url-desc image
 
205
                                   footnote))
204
206
         muse-texinfo-markup-specials-url)
205
207
        (t muse-texinfo-markup-specials)))
206
208