rpl-tools.el 635 B

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