summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app-text/psgml/files')
-rw-r--r--app-text/psgml/files/digest-psgml-1.2.21
-rw-r--r--app-text/psgml/files/digest-psgml-1.2.2-r11
-rw-r--r--app-text/psgml/files/digest-psgml-1.2.41
-rw-r--r--app-text/psgml/files/dot_emacs53
4 files changed, 0 insertions, 56 deletions
diff --git a/app-text/psgml/files/digest-psgml-1.2.2 b/app-text/psgml/files/digest-psgml-1.2.2
deleted file mode 100644
index 6b696e1620bb..000000000000
--- a/app-text/psgml/files/digest-psgml-1.2.2
+++ /dev/null
@@ -1 +0,0 @@
-MD5 b7e68d02b08cfb684926b93ada898f1c psgml-1.2.2.tar.gz 251712
diff --git a/app-text/psgml/files/digest-psgml-1.2.2-r1 b/app-text/psgml/files/digest-psgml-1.2.2-r1
deleted file mode 100644
index 6b696e1620bb..000000000000
--- a/app-text/psgml/files/digest-psgml-1.2.2-r1
+++ /dev/null
@@ -1 +0,0 @@
-MD5 b7e68d02b08cfb684926b93ada898f1c psgml-1.2.2.tar.gz 251712
diff --git a/app-text/psgml/files/digest-psgml-1.2.4 b/app-text/psgml/files/digest-psgml-1.2.4
deleted file mode 100644
index 80fb326b6602..000000000000
--- a/app-text/psgml/files/digest-psgml-1.2.4
+++ /dev/null
@@ -1 +0,0 @@
-MD5 2817cc419befb5641dd5ba3e1e774676 psgml-1.2.4.tar.gz 254119
diff --git a/app-text/psgml/files/dot_emacs b/app-text/psgml/files/dot_emacs
deleted file mode 100644
index ccbd6f6802e4..000000000000
--- a/app-text/psgml/files/dot_emacs
+++ /dev/null
@@ -1,53 +0,0 @@
-;; $Id: dot_emacs,v 1.2 2000/03/29 19:12:16 nwalsh Exp
-;; DocBook IDE mode
-(autoload 'docbook-mode "docbookide" "Major mode for DocBook documents." t)
-;; Turn on font lock when in DocBook mode
-(add-hook 'docbook-mode-hook
- 'turn-on-font-lock)
-
-;; You might want to make this the default for .sgml or .xml documents,
-;; or you might want to rely on -*- DocBook -*- on the first line,
-;; or perhaps buffer variables. It's up to you...
-;;(setq auto-mode-alist
-;; (append
-;; (list
-;; '("\\.sgm" . docbook-mode))
-;; '("\\.sgml" . docbook-mode))
-;; '("\\.xml" . docbook-mode))
-;; auto-mode-alist))
-
-;; keyboard mods not specific to any mode.
-(global-set-key [(control h)] 'delete-backward-char) ;backspace, not help!
-(global-set-key "\C-cg" 'goto-line)
-(global-set-key [home] 'beginning-of-line) ;not screen
-(global-set-key "\e[1~" 'beginning-of-line) ;not screen
-(global-set-key "\eOH" 'beginning-of-line) ;Needed on remote xterm?
-(global-set-key [end] 'end-of-line) ;inactive by default?
-(global-set-key "\e[4~" 'end-of-line)
-(global-set-key "\eOF" 'end-of-line) ;Needed on remote xterm?
-
-(global-set-key [delete] 'delete-char) ; delete char, don't move cursor.
-(global-set-key [(meta control h)] 'backward-kill-word)
-(global-set-key [f2] 'other-window) ;convenient shortcuts.
-(global-set-key [f3] 'kill-this-buffer)
-(global-unset-key [escape escape]) ;eval-expr gets in my way.
-
-(global-set-key [(control x)(control u)] 'undo) ;bind to something useful.
-;(require 'redo)
-;(global-set-key [(control x)(control r)] 'redo) ;consistent with my undo.
-
-(global-set-key [(shift button2)] ;<shift>-mouse2 to load
- 'browse-url-at-mouse) ;url at point into netscape.
-
-;; Make sure we have sgml and xml modes (psgml.el)
-(autoload 'sgml-mode "psgml" "Major mode to edit SGML files." t)
-(autoload 'xml-mode "psgml" "Major mode to edit XML files." t)
-(setq sgml-set-face t)
-(setq sgml-indent-step t)
-(setq sgml-live-element-indicator t)
-;; Recognize Lutris Enhydra doml files as xml. This doesn't work
-;; very well because xml-mode has problems reading the doml dtd.
-(setq auto-mode-alist (cons '("\\.doml$" . xml-mode) auto-mode-alist))
-
-;; Set the global central catalog
-(setq sgml-catalog-files (quote ("CATALOG" "/etc/sgml/catalog")))