Skip to content
This repository has been archived by the owner on Feb 17, 2018. It is now read-only.

Commit

Permalink
add erbc6----#emacsers' functions.
Browse files Browse the repository at this point in the history
  • Loading branch information
deego committed Aug 16, 2003
1 parent 915d3d4 commit a927ebe
Show file tree
Hide file tree
Showing 2 changed files with 66 additions and 1 deletion.
4 changes: 3 additions & 1 deletion erball.el
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
;;; erball.el --- Functions on all files.
;; Time-stamp: <2003-07-10 15:58:22 deego>
;; Time-stamp: <2003-08-16 15:20:05 deego>
;; Copyright (C) 2002 D. Goel
;; Emacs Lisp Archive entry
;; Filename: erbc.el
Expand Down Expand Up @@ -30,6 +30,7 @@
(require 'erbc3)
(require 'erbc4)
(require 'erbc5)
(require 'erbc6)
(require 'erbbdb)
(require 'erbforget)
(require 'erbedit)
Expand Down Expand Up @@ -65,6 +66,7 @@
"erbc3.el"
"erbc4.el"
"erbc5.el"
"erbc6.el"
)

""
Expand Down
63 changes: 63 additions & 0 deletions erbc6.el
Original file line number Diff line number Diff line change
@@ -0,0 +1,63 @@
;;; erbc6.el --- fsbot functions contributed by freenode users, esp. #emacsers.
;; Time-stamp: <2003-08-16 15:19:25 deego>
;; Copyright (C) 2003 D. Goel
;; Emacs Lisp Archive entry
;; Filename: erbc6.el
;; Package: erbc6
;; Author: D. Goel <deego@glue.umd.edu> and #emacsers
;; Keywords:
;; Version:
;; URL: http://gnufans.net/~deego
;; For latest version:

(defconst erbc6-home-page
"http://gnufans.net/~deego")



;; This file is NOT (yet) part of GNU Emacs.

;; This is free software; you can redistribute it and/or modify
;; it under the terms of the GNU General Public License as published by
;; the Free Software Foundation; either version 2, or (at your option)
;; any later version.

;; This is distributed in the hope that it will be useful,
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
;; GNU General Public License for more details.

;; You should have received a copy of the GNU General Public License
;; along with GNU Emacs; see the file COPYING. If not, write to the
;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
;; Boston, MA 02111-1307, USA.


;;; Real Code:




(defun fs-C-h (sym &rest thing)
"
;;; 2003-08-16 T15:19:00-0400 (Saturday) D. Goel
Coded by bojohann on #emacs."
(cond
((eq sym 'f)
(apply 'df thing))
((eq sym 'k)
(apply 'dk thing))
((eq sym 'c)
more
(apply 'describe-key-briefly thing))
((eq sym 'w)
(apply 'dw thing))
((eq sym 'v)
(apply 'dv thing))))

(provide 'erbc6)
(run-hooks 'erbc6-after-load-hook)



;;; erbc6.el ends here

0 comments on commit a927ebe

Please sign in to comment.