123456789101112131415161718192021222324252627 |
- ;;; rpl-tools.el -- tools for RPL calculator programming
- ;; Copyright (C) 2014 Paul Onions
- ;; Author: Paul Onions <paul.onions@acm.org>
- ;; Keywords: RPL, SysRPL, HP48, HP49, HP50, calculator
- ;; This file is free software, see the LICENCE file in this directory
- ;; for copying terms.
- ;;; Commentary:
- ;; To use this system, ensure this directory is in your `load-path',
- ;; and put
- ;;
- ;; (require 'rpl-tools)
- ;;
- ;; into your .emacs file.
- ;;; Code:
- ;; Load everything
- (require 'rpl-base)
- (require 'sysrpl-mode)
- ;; Acknowledge we're loaded
- (provide 'rpl-tools)
|