comparison lisp/textmodes/tildify.el @ 33949:7012133c553b

*** empty log message ***
author Gerd Moellmann <gerd@gnu.org>
date Tue, 28 Nov 2000 11:37:40 +0000
parents 7f307e299d03
children 504c274ec49b
comparison
equal deleted inserted replaced
33948:703910cf20ec 33949:7012133c553b
1 ;;; tildify.el --- adding hard spaces into texts 1 ;;; tildify.el --- adding hard spaces into texts
2 2
3 ;; Copyright (C) 1997, 1998, 1999 Free Software Foundation, Inc. 3 ;; Copyright (C) 1997, 1998, 1999, 2000 Free Software Foundation, Inc.
4 4
5 ;; Author: Milan Zamazal <pdm@freesoft.cz> 5 ;; Author: Milan Zamazal <pdm@freesoft.cz>
6 ;; Version: 4.4 6 ;; Version: 4.4
7 ;; Keywords: text, TeX, SGML, wp 7 ;; Keywords: text, TeX, SGML, wp
8 8
82 :type '(repeat (choice (list symbol regexp integer) (cons symbol symbol)))) 82 :type '(repeat (choice (list symbol regexp integer) (cons symbol symbol))))
83 83
84 (defcustom tildify-string-alist 84 (defcustom tildify-string-alist
85 '((latex-mode . "~") 85 '((latex-mode . "~")
86 (tex-mode . latex-mode) 86 (tex-mode . latex-mode)
87 (plain-tex-mode . latex-mode)
87 (sgml-mode . "&nbsp;") 88 (sgml-mode . "&nbsp;")
88 (html-mode . sgml-mode) 89 (html-mode . sgml-mode)
89 (t . " ")) 90 (t . " "))
90 "Alist specifying what is a hard space in the current major mode. 91 "Alist specifying what is a hard space in the current major mode.
91 92