Changeset 3908

Show
Ignore:
Timestamp:
06/30/09 13:05:04 (5 months ago)
Author:
gls
Message:

Fix minor bug in previous fix (needed to double backslashes)

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/Fortify/fortify.el

    r3907 r3908  
    13971397 
    13981398(defun fortress-render-unknown (str) 
    1399   (concat "\\underline{" (fortress-render-string-contents str) "}")) 
     1399  (if (and (= (length str) 1) (= (elt str 0) ?\r)) 
     1400      "" 
     1401    (concat "\\underline{" (fortress-render-string-contents str) "}"))) 
    14001402 
    14011403(defun fortress-render-string-contents (str) 
     
    31683170   ("|||" "\\mathrel{\\Vvert}" RELATION) 
    31693171   ("||||" "\\mathrel{\\VVert}" RELATION) 
    3170    ("//" "\\mathrel{/\!\!/}" RELATION) 
    3171    ("///" "\\mathrel{/\!\!/\!\!/}" RELATION) 
    3172    ("////" "\\mathrel{/\!\!/\!\!/\!\!/}" RELATION) 
     3172   ("//" "\\mathrel{/\\!\\!/}" RELATION) 
     3173   ("///" "\\mathrel{/\\!\\!/\\!\\!/}" RELATION) 
     3174   ("////" "\\mathrel{/\\!\\!/\\!\\!/\\!\\!/}" RELATION) 
    31733175   ("<-" "\\leftarrow" RELATION) 
    31743176   ("->" "\\rightarrow" RELATION)