From xemacs-m  Fri May 16 13:45:30 1997
Received: from jagor.srce.hr (hniksic@jagor.srce.hr [161.53.2.130])
	by xemacs.org (8.8.5/8.8.5) with ESMTP id NAA21322
	for <xemacs-beta@xemacs.org>; Fri, 16 May 1997 13:45:28 -0500 (CDT)
Received: (from hniksic@localhost)
          by jagor.srce.hr (8.8.5/8.8.4)
	  id UAA12278; Fri, 16 May 1997 20:45:28 +0200 (MET DST)
To: XEmacs Developers <xemacs-beta@xemacs.org>
Subject: delbs.el
X-Save-Project-Gutenberg: <URL:http://www.promo.net/pg/nl/pgny_nov96.html>
X-Attribution: Hrv
X-Face: Mie8:rOV<\c/~z{s.X4A{!?vY7{drJ([U]0O=W/<W*SMo/Mv:58:*_y~ki>xDi&N7XG
        KV^$k0m3Oe/)'e%3=$PCR&3ITUXH,cK>]bci&<qQ>Ff%x_>1`T(+M2Gg/fgndU%k*ft
        [(7._6e0n-V%|%'[c|q:;}td$#INd+;?!-V=c8Pqf}3J
From: Hrvoje Niksic <hniksic@srce.hr>
Date: 16 May 1997 20:45:27 +0200
Message-ID: <kigaflv6yt4.fsf@jagor.srce.hr>
Lines: 30
X-Mailer: Gnus v5.4.52/XEmacs 19.15

To use delbs.el, one must both require it, and call a function.  Since
it's a part of XEmacs, I think autoload cookies are in place.

diff -u lisp/utils/delbs.el.orig lisp/utils/delbs.el
--- lisp/utils/delbs.el.orig	Fri May 16 20:44:48 1997
+++ lisp/utils/delbs.el	Fri May 16 20:44:49 1997
@@ -37,6 +37,7 @@
 
 ;;; Code:
 
+;;;###autoload
 (defun delbs-enable-delete-forward ()
   "Set up the delete key to delete forward, and backspace to delete backward."
   (interactive)
@@ -44,7 +45,8 @@
   (define-key key-translation-map [delete] "\C-d")
   (define-key key-translation-map [(meta backspace)] "\M-\C-?")
   (define-key key-translation-map [(meta delete)] "\M-d"))
-  
+
+;;;###autoload
 (defun delbs-disable-delete-forward ()
   "Return the DEL/BS key mappings to the XEmacs default"
   (interactive)

-- 
Hrvoje Niksic <hniksic@srce.hr> | Student at FER Zagreb, Croatia
--------------------------------+--------------------------------
Contrary to popular belief, Unix is user friendly.  
It just happens to be selective about who it makes friends with.

