rpl-tools.el 566 B

123456789101112131415161718192021222324252627
  1. ;;; rpl-tools.el -- tools for RPL calculator programming
  2. ;; Copyright (C) 2014 Paul Onions
  3. ;; Author: Paul Onions <paul.onions@acm.org>
  4. ;; Keywords: RPL, SysRPL, HP48, HP49, HP50, calculator
  5. ;; This file is free software, see the LICENCE file in this directory
  6. ;; for copying terms.
  7. ;;; Commentary:
  8. ;; To use this system, ensure this directory is in your `load-path',
  9. ;; and put
  10. ;;
  11. ;; (require 'rpl-tools)
  12. ;;
  13. ;; into your .emacs file.
  14. ;;; Code:
  15. ;; Load everything
  16. (require 'rpl-base)
  17. (require 'sysrpl-mode)
  18. ;; Acknowledge we're loaded
  19. (provide 'rpl-tools)