You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
71 lines
2.4 KiB
71 lines
2.4 KiB
9 years ago
|
;;; haskell-compat.el --- legacy/compatibility backports for haskell-mode -*- lexical-binding: t -*-
|
||
|
;;
|
||
|
;; Filename: haskell-compat.el
|
||
|
;; Description: legacy/compatibility backports for haskell-mode
|
||
|
|
||
|
;; This file is not part of GNU Emacs.
|
||
|
|
||
|
;; This file 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, or (at your option)
|
||
|
;; any later version.
|
||
|
|
||
|
;; This file 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 this program. If not, see <http://www.gnu.org/licenses/>.
|
||
|
|
||
|
;;; Commentary:
|
||
|
|
||
|
;;; Code:
|
||
|
(require 'etags)
|
||
|
(require 'ring)
|
||
|
(require 'outline)
|
||
|
(require 'xref nil t)
|
||
|
|
||
|
(eval-when-compile
|
||
|
(setq byte-compile-warnings '(not cl-functions obsolete)))
|
||
|
|
||
|
;; Missing in Emacs23, stolen from Emacs24's `subr.el'
|
||
|
(unless (fboundp 'process-live-p)
|
||
|
(defun process-live-p (process)
|
||
|
"Returns non-nil if PROCESS is alive.
|
||
|
A process is considered alive if its status is `run', `open',
|
||
|
`listen', `connect' or `stop'."
|
||
|
(memq (process-status process)
|
||
|
'(run open listen connect stop))))
|
||
|
|
||
|
;; Cross-referencing commands have been replaced since Emacs 25.1.
|
||
|
;; These aliases are required to provide backward compatibility.
|
||
|
(unless (fboundp 'xref-push-marker-stack)
|
||
|
(defalias 'xref-pop-marker-stack 'pop-tag-mark)
|
||
|
|
||
|
(defun xref-push-marker-stack (&optional m)
|
||
|
"Add point to the marker stack."
|
||
|
(ring-insert find-tag-marker-ring (or m (point-marker)))))
|
||
|
|
||
|
(unless (fboundp 'outline-hide-sublevels)
|
||
|
(defalias 'outline-hide-sublevels 'hide-sublevels))
|
||
|
|
||
|
(unless (fboundp 'outline-show-subtree)
|
||
|
(defalias 'outline-show-subtree 'show-subtree))
|
||
|
|
||
|
(unless (fboundp 'outline-hide-sublevels)
|
||
|
(defalias 'outline-hide-sublevels 'hide-sublevels))
|
||
|
|
||
|
(unless (fboundp 'outline-show-subtree)
|
||
|
(defalias 'outline-show-subtree 'show-subtree))
|
||
|
|
||
|
(unless (fboundp 'xref-find-definitions)
|
||
|
(defun xref-find-definitions (ident)
|
||
|
(let ((next-p (and (boundp 'xref-prompt-for-identifier)
|
||
|
xref-prompt-for-identifier)))
|
||
|
(find-tag ident next-p))))
|
||
|
|
||
|
(provide 'haskell-compat)
|
||
|
|
||
|
;;; haskell-compat.el ends here
|