X-Git-Url: https://code.delx.au/gnu-emacs-elpa/blobdiff_plain/cb0a58684509ba5d3546d7d08a11b136ca294c11..971eea5ba3ff339ea6129cebff1fa2457fc9a6dc:/company-nxml.el diff --git a/company-nxml.el b/company-nxml.el index 0be181975..9c180e985 100644 --- a/company-nxml.el +++ b/company-nxml.el @@ -1,6 +1,6 @@ -;;; company-nxml.el --- A company-mode completion back-end for nxml-mode +;;; company-nxml.el --- company-mode completion backend for nxml-mode -;; Copyright (C) 2009-2011 Free Software Foundation, Inc. +;; Copyright (C) 2009-2011, 2013 Free Software Foundation, Inc. ;; Author: Nikolaj Schumacher @@ -26,9 +26,18 @@ ;;; Code: (require 'company) -(require 'nxml-mode) -(require 'rng-nxml) -(eval-when-compile (require 'cl)) +(require 'cl-lib) + +(defvar rng-open-elements) +(defvar rng-validate-mode) +(defvar rng-in-attribute-regex) +(defvar rng-in-attribute-value-regex) +(declare-function rng-set-state-after "rng-nxml") +(declare-function rng-match-possible-start-tag-names "rng-match") +(declare-function rng-adjust-state-for-attribute "rng-nxml") +(declare-function rng-match-possible-attribute-names "rng-match") +(declare-function rng-adjust-state-for-attribute-value "rng-nxml") +(declare-function rng-match-possible-value-strings "rng-match") (defconst company-nxml-token-regexp "\\(?:[_[:alpha:]][-._[:alnum:]]*\\_>\\)") @@ -67,7 +76,7 @@ ,@body))) (defun company-nxml-tag (command &optional arg &rest ignored) - (case command + (cl-case command (prefix (and (derived-mode-p 'nxml-mode) rng-validate-mode (company-grab company-nxml-in-tag-name-regexp 1))) @@ -77,7 +86,7 @@ (sorted t))) (defun company-nxml-attribute (command &optional arg &rest ignored) - (case command + (cl-case command (prefix (and (derived-mode-p 'nxml-mode) rng-validate-mode (memq (char-after) '(?\ ?\t ?\n)) ;; outside word @@ -90,7 +99,7 @@ (sorted t))) (defun company-nxml-attribute-value (command &optional arg &rest ignored) - (case command + (cl-case command (prefix (and (derived-mode-p 'nxml-mode) rng-validate-mode (and (memq (char-after) '(?' ?\" ?\ ?\t ?\n)) ;; outside word @@ -112,9 +121,9 @@ ;;;###autoload (defun company-nxml (command &optional arg &rest ignored) - "A `company-mode' completion back-end for `nxml-mode'." + "`company-mode' completion backend for `nxml-mode'." (interactive (list 'interactive)) - (case command + (cl-case command (interactive (company-begin-backend 'company-nxml)) (prefix (or (company-nxml-tag 'prefix) (company-nxml-attribute 'prefix)