;;; -*- mode: emacs-lisp; lexical-binding: t -*- ;;; rpl-tools.el -- tools for RPL calculator programming ;; Copyright (C) 2014 Paul Onions ;; Author: Paul Onions ;; 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)