parent-mode-2.3.1/0000755000175000017500000000000014561744445013600 5ustar dogslegdogslegparent-mode-2.3.1/parent-mode-test.el0000644000175000017500000000605314561744445017316 0ustar dogslegdogsleg;;; parent-mode-test.el --- parent-mode test suite ;; Author: Fanael Linithien ;; URL: https://github.com/Fanael/parent-mode ;; This file is NOT part of GNU Emacs. ;; Copyright (c) 2014, Fanael Linithien ;; All rights reserved. ;; ;; Redistribution and use in source and binary forms, with or without ;; modification, are permitted provided that the following conditions are ;; met: ;; ;; * Redistributions of source code must retain the above copyright ;; notice, this list of conditions and the following disclaimer. ;; * Redistributions in binary form must reproduce the above copyright ;; notice, this list of conditions and the following disclaimer in the ;; documentation and/or other materials provided with the distribution. ;; ;; THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS ;; IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED ;; TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A ;; PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER ;; OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, ;; EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, ;; PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR ;; PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF ;; LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING ;; NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS ;; SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ;;; Commentary: ;; `parent-mode' test suite ;;; Code: (when noninteractive (push (file-name-directory load-file-name) load-path)) (require 'parent-mode) (require 'ert) (define-derived-mode parent-mode-test-1-mode fundamental-mode "") (define-derived-mode parent-mode-test-2-mode parent-mode-test-1-mode "") (defalias 'parent-mode-test-3-parent-mode 'text-mode) (define-derived-mode parent-mode-test-3-mode parent-mode-test-3-parent-mode "") (define-derived-mode parent-mode-test-4-mode parent-mode-test-3-mode "") (ert-deftest parent-mode-simple-mode () (should (equal (parent-mode-list 'parent-mode-test-1-mode) '(parent-mode-test-1-mode)))) (ert-deftest parent-mode-derived-mode () (should (equal (parent-mode-list 'parent-mode-test-2-mode) '(parent-mode-test-1-mode parent-mode-test-2-mode)))) (ert-deftest parent-mode-defalias () (should (equal (parent-mode-list 'parent-mode-test-3-mode) '(text-mode parent-mode-test-3-parent-mode parent-mode-test-3-mode)))) (ert-deftest parent-mode-derived-p-derived () (should (parent-mode-is-derived-p 'parent-mode-test-4-mode 'text-mode))) (ert-deftest parent-mode-derived-p-not-derived () (should-not (parent-mode-is-derived-p 'parent-mode-test-4-mode 'emacs-lisp-mode))) (ert-deftest parent-mode-gracefully-handles-nonexistent-modes () (should-error (parent-mode-list 'nonexistent-mode) :type 'void-function)) (provide 'parent-mode-test) ;;; parent-mode-test.el ends here parent-mode-2.3.1/parent-mode.el0000644000175000017500000000577314561744445016351 0ustar dogslegdogsleg;;; parent-mode.el --- get major mode's parent modes -*- lexical-binding: nil -*- ;; Author: Fanael Linithien ;; URL: https://github.com/Fanael/parent-mode ;; Version: 2.3.1 ;; This file is NOT part of GNU Emacs. ;; Copyright (c) 2014-2024, Fanael Linithien ;; All rights reserved. ;; ;; Redistribution and use in source and binary forms, with or without ;; modification, are permitted provided that the following conditions are ;; met: ;; ;; * Redistributions of source code must retain the above copyright ;; notice, this list of conditions and the following disclaimer. ;; * Redistributions in binary form must reproduce the above copyright ;; notice, this list of conditions and the following disclaimer in the ;; documentation and/or other materials provided with the distribution. ;; ;; THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS ;; IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED ;; TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A ;; PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER ;; OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, ;; EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, ;; PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR ;; PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF ;; LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING ;; NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS ;; SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ;;; Commentary: ;;; Code: (defun parent-mode--worker (mode func) "For MODE and all its parent modes, call FUNC. FUNC is first called for MODE, then for its parent, then for the parent's parent, and so on. MODE shall be a symbol referring to a function. FUNC shall be a function taking one argument." (funcall func mode) (when (not (fboundp mode)) (signal 'void-function (list mode))) (let ((modefunc (symbol-function mode))) (if (symbolp modefunc) ;; Hande all the modes that use (defalias 'foo-parent-mode (stuff)) as ;; their parent (parent-mode--worker modefunc func) (let ((parentmode (get mode 'derived-mode-parent))) (when parentmode (parent-mode--worker parentmode func)))))) (defun parent-mode-list (mode) "Return a list of MODE and all its parent modes. The returned list starts with the parent-most mode and ends with MODE." (let ((result ())) (parent-mode--worker mode (lambda (mode) (push mode result))) result)) (defun parent-mode-is-derived-p (mode parent) "Non-nil iff MODE is a major mode derived from PARENT. Both MODE and PARENT shall be symbols." (catch 'parent-mode-is-derived-p (parent-mode--worker mode (lambda (m) (when (eq m parent) (throw 'parent-mode-is-derived-p t)))) nil)) (provide 'parent-mode) ;;; parent-mode.el ends here