# HG changeset patch # User Stefan Monnier # Date 953652871 0 # Node ID 963f1d516e92c44389c54aaa52eb0dc1336fcc64 # Parent 763c6639628bfe883b406fa3f48064ba45783dab * derived.el (define-derived-mode): Don't autoload anymore. Prefer the macro-only version provided by easy-mmode.el. * emacs-lisp/easy-mmode.el (define-derived-mode): New name for `easy-mmode-define-derived-mode'. Use `combine-run-hooks'. (easy-mmode-define-navigation): New macro. diff -r 763c6639628b -r 963f1d516e92 lisp/derived.el --- a/lisp/derived.el Tue Mar 21 15:28:44 2000 +0000 +++ b/lisp/derived.el Tue Mar 21 15:34:31 2000 +0000 @@ -25,6 +25,13 @@ ;;; Commentary: +;; Obsolete. +;; Use the `derived-major-mode' provided by easy-mmode.el instead. +;; It is only kept for backward compatibility with byte-compiled files +;; which refer to `derived-mode-init-mode-variables' and other functions. + + + ;; GNU Emacs is already, in a sense, object oriented -- each object ;; (buffer) belongs to a class (major mode), and that class defines ;; the relationship between messages (input events) and methods @@ -95,7 +102,7 @@ ;; PUBLIC: define a new major mode which inherits from an existing one. -;;;###autoload +;; ;;;###autoload (defmacro define-derived-mode (child parent name &optional docstring &rest body) "Create a new mode as a variant of an existing mode. diff -r 763c6639628b -r 963f1d516e92 lisp/emacs-lisp/easy-mmode.el --- a/lisp/emacs-lisp/easy-mmode.el Tue Mar 21 15:28:44 2000 +0000 +++ b/lisp/emacs-lisp/easy-mmode.el Tue Mar 21 15:34:31 2000 +0000 @@ -236,9 +236,13 @@ +;;; ;;; A "macro-only" reimplementation of define-derived-mode. +;;; -(defmacro easy-mmode-define-derived-mode (child parent name &optional docstring &rest body) +(defalias 'easy-mmode-define-derived-mode 'define-derived-mode) +;;;###autoload +(defmacro define-derived-mode (child parent name &optional docstring &rest body) "Create a new mode as a variant of an existing mode. The arguments to this command are as follow: @@ -312,34 +316,74 @@ ,docstring (interactive) ; Run the parent. - (,parent) + (combine-run-hooks + + (,parent) ; Identify special modes. - (put ',child 'special (get ',parent 'special)) + (put ',child 'special (get ',parent 'special)) ; Identify the child mode. - (setq major-mode ',child) - (setq mode-name ,name) + (setq major-mode ',child) + (setq mode-name ,name) ; Set up maps and tables. - (unless (keymap-parent ,map) - (set-keymap-parent ,map (current-local-map))) - (let ((parent (char-table-parent ,syntax))) - (unless (and parent (not (eq parent (standard-syntax-table)))) - (set-char-table-parent ,syntax (syntax-table)))) - (when local-abbrev-table - (mapatoms - (lambda (symbol) - (or (intern-soft (symbol-name symbol) ,abbrev) - (define-abbrev ,abbrev (symbol-name symbol) - (symbol-value symbol) (symbol-function symbol)))) - local-abbrev-table)) + (unless (keymap-parent ,map) + (set-keymap-parent ,map (current-local-map))) + (let ((parent (char-table-parent ,syntax))) + (unless (and parent (not (eq parent (standard-syntax-table)))) + (set-char-table-parent ,syntax (syntax-table)))) + (when local-abbrev-table + (mapatoms + (lambda (symbol) + (or (intern-soft (symbol-name symbol) ,abbrev) + (define-abbrev ,abbrev (symbol-name symbol) + (symbol-value symbol) (symbol-function symbol)))) + local-abbrev-table)) - (use-local-map ,map) - (set-syntax-table ,syntax) - (setq local-abbrev-table ,abbrev) + (use-local-map ,map) + (set-syntax-table ,syntax) + (setq local-abbrev-table ,abbrev) ; Splice in the body (if any). - ,@body + ,@body) ; Run the hooks, if any. (run-hooks ',hook))))) + +;;; +;;; easy-mmode-define-navigation +;;; + +(defmacro easy-mmode-define-navigation (base re &optional name endfun) + "Define BASE-next and BASE-prev to navigate in the buffer. +RE determines the places the commands should move point to. +NAME should describe the entities matched by RE and is used to build + the docstrings of the two functions. +BASE-next also tries to make sure that the whole entry is visible by + searching for its end (by calling ENDFUN if provided or by looking for + the next entry) and recentering if necessary. +ENDFUN should return the end position (with or without moving point)." + (let* ((base-name (symbol-name base)) + (prev-sym (intern (concat base-name "-prev"))) + (next-sym (intern (concat base-name "-next")))) + `(progn + (defun ,next-sym (&optional count) + ,(format "Go to the next COUNT'th %s." (or name base-name)) + (interactive) + (unless count (setq count 1)) + (if (< count 0) (,prev-sym (- count)) + (if (looking-at ,re) (incf count)) + (or (re-search-forward ,re nil t count) (ding)) + (goto-char (match-beginning 0)) + (when (eq (current-buffer) (window-buffer (selected-window))) + (let ((endpt (or (save-excursion + ,(if endfun `(,endfun) + `(re-search-forward ,re nil t 2))) + (point-max)))) + (unless (<= endpt (window-end)) (recenter)))))) + (defun ,prev-sym (&optional count) + ,(format "Go to the previous COUNT'th %s" (or name base-name)) + (interactive) + (unless count (setq count 1)) + (if (< count 0) (,next-sym (- count)) + (or (re-search-backward ,re nil t count) (ding))))))) (provide 'easy-mmode)