2018-09-04 10:35:35 -04:00
|
|
|
;;; -*- mode: emacs-lisp; lexical-binding: t -*-
|
2012-05-15 21:46:17 +02:00
|
|
|
;;; ein-completer.el --- Completion module
|
|
|
|
|
2018-09-02 23:24:21 -05:00
|
|
|
;; Copyright (C) 2018- Takafumi Arakaki / John Miller
|
2012-05-15 21:46:17 +02:00
|
|
|
|
2018-09-02 23:24:21 -05:00
|
|
|
;; Author: Takafumi Arakaki <aka.tkf at gmail.com> / John Miller <millejoh at mac.com>
|
2012-05-15 21:46:17 +02:00
|
|
|
|
|
|
|
;; This file is NOT part of GNU Emacs.
|
|
|
|
|
|
|
|
;; ein-completer.el is free software: you can redistribute it and/or modify
|
|
|
|
;; it under the terms of the GNU General Public License as published by
|
|
|
|
;; the Free Software Foundation, either version 3 of the License, or
|
|
|
|
;; (at your option) any later version.
|
|
|
|
|
|
|
|
;; ein-completer.el is distributed in the hope that it will be useful,
|
|
|
|
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
;; GNU General Public License for more details.
|
|
|
|
|
|
|
|
;; You should have received a copy of the GNU General Public License
|
|
|
|
;; along with ein-completer.el. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
;;; Commentary:
|
|
|
|
|
2020-01-10 23:58:51 -05:00
|
|
|
;; This needs to get re-written.
|
2012-05-15 21:46:17 +02:00
|
|
|
|
|
|
|
;;; Code:
|
|
|
|
|
2018-12-25 19:12:26 -05:00
|
|
|
(make-obsolete-variable 'ein:complete-on-dot nil "0.15.0")
|
2020-01-10 23:58:51 -05:00
|
|
|
(make-obsolete-variable 'ein:completion-backend nil "0.17.0")
|
2018-09-02 23:24:21 -05:00
|
|
|
|
2012-05-15 21:46:17 +02:00
|
|
|
(provide 'ein-completer)
|
|
|
|
|
|
|
|
;;; ein-completer.el ends here
|