2019-12-22 21:57:01 +01:00
|
|
|
;;; wpc-prolog.el --- For Prologging things -*- lexical-binding: t -*-
|
2020-08-31 16:57:34 +02:00
|
|
|
|
2019-12-22 21:57:01 +01:00
|
|
|
;; Author: William Carroll <wpcarro@gmail.com>
|
2020-08-31 16:57:34 +02:00
|
|
|
;; Version: 0.0.1
|
|
|
|
;; Package-Requires: ((emacs "24"))
|
|
|
|
;; Homepage: https://user.git.corp.google.com/wpcarro/briefcase
|
2019-12-22 21:57:01 +01:00
|
|
|
|
|
|
|
;;; Commentary:
|
|
|
|
;; Code configuring my Prolog work.
|
|
|
|
|
|
|
|
;;; Code:
|
|
|
|
|
|
|
|
(require 'macros)
|
|
|
|
|
|
|
|
;; TODO: Notice that the .pl extension conflicts with Perl files. This may
|
|
|
|
;; become a problem should I start working with Perl.
|
2020-09-01 00:28:47 +02:00
|
|
|
(macros-support-file-extension "pl" prolog-mode)
|
2019-12-22 21:57:01 +01:00
|
|
|
|
|
|
|
(provide 'wpc-prolog)
|
|
|
|
;;; wpc-prolog.el ends here
|