]> code.delx.au - gnu-emacs-elpa/commitdiff
Added back-end file headers.
authorNikolaj Schumacher <git@nschum.de>
Sun, 15 Mar 2009 20:32:22 +0000 (21:32 +0100)
committerNikolaj Schumacher <git@nschum.de>
Fri, 20 Mar 2009 09:20:42 +0000 (10:20 +0100)
company-css.el
company-dabbrev.el
company-elisp.el
company-ispell.el
company-nxml.el
company-oddmuse.el
company-semantic.el
company.el

index af513ca744fda8e2f65cacf5d287e12e05251273..44ec09f134288ab9d59c6059a647454caed54e0d 100644 (file)
@@ -1,3 +1,22 @@
+;;; company-css.el --- a company-mode completion back-end for css-mode
+;;
+;; Copyright (C) 2009 Nikolaj Schumacher
+;;
+;; This file is part of company.
+;;
+;; This program 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 2
+;; of the License, or (at your option) any later version.
+;;
+;; This program 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/>.
+
 (require 'company)
 (eval-when-compile (require 'cl))
 
index 0571260a90cdf0c37673390e92e598c719a34ae8..ecd8610f894591df02a7bd79339318964d8905fa 100644 (file)
@@ -1,3 +1,22 @@
+;;; company-dabbrev.el --- a company-mode completion back-end for dabbrev
+;;
+;; Copyright (C) 2009 Nikolaj Schumacher
+;;
+;; This file is part of company.
+;;
+;; This program 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 2
+;; of the License, or (at your option) any later version.
+;;
+;; This program 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/>.
+
 (require 'company)
 (require 'dabbrev)
 (eval-when-compile (require 'cl))
index 6373aeab85a4958153a162181d2b9006566170e0..df7e5686b3ee288ff175f680e4569cbf051a1866 100644 (file)
@@ -1,3 +1,22 @@
+;;; company-elisp.el --- a company-mode completion back-end for emacs-lisp-mode
+;;
+;; Copyright (C) 2009 Nikolaj Schumacher
+;;
+;; This file is part of company.
+;;
+;; This program 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 2
+;; of the License, or (at your option) any later version.
+;;
+;; This program 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/>.
+
 (require 'company)
 (eval-when-compile (require 'cl))
 
index a5811709008d65d8b287614dc84f5aad68a15fa9..b5b1a616f03e7412459d031182d16b69242874c2 100644 (file)
@@ -1,3 +1,22 @@
+;;; company-ispell.el --- a company-mode completion back-end using ispell
+;;
+;; Copyright (C) 2009 Nikolaj Schumacher
+;;
+;; This file is part of company.
+;;
+;; This program 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 2
+;; of the License, or (at your option) any later version.
+;;
+;; This program 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/>.
+
 (require 'company)
 (require 'ispell)
 (eval-when-compile (require 'cl))
index 18badc8a65464ed6fe84d2f6e6cbbb416f374e3e..72cb234f78e5c5439b0e98592962b1aab27af75f 100644 (file)
@@ -1,3 +1,22 @@
+;;; company-nxml.el --- a company-mode completion back-end for nxml-mode
+;;
+;; Copyright (C) 2009 Nikolaj Schumacher
+;;
+;; This file is part of company.
+;;
+;; This program 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 2
+;; of the License, or (at your option) any later version.
+;;
+;; This program 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/>.
+
 (require 'company)
 (require 'nxml-mode)
 (require 'rng-nxml)
index cf41e7b184781af448354d52e83c55bac642f1af..d9602dd99e17d81d425cdca485cd5f3228d52bbd 100644 (file)
@@ -1,3 +1,22 @@
+;;; company-oddmuse.el --- a company-mode completion back-end for oddmuse-mode
+;;
+;; Copyright (C) 2009 Nikolaj Schumacher
+;;
+;; This file is part of company.
+;;
+;; This program 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 2
+;; of the License, or (at your option) any later version.
+;;
+;; This program 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/>.
+
 (require 'company)
 (require 'oddmuse)
 (eval-when-compile (require 'cl))
index 960e69bc7c87d6399992df5778af1791135c9648..a310927e4fa0fb63c6dbae76290cc2515e277e61 100644 (file)
@@ -1,3 +1,22 @@
+;;; company-semantic.el --- a company-mode back-end using CEDET Semantic
+;;
+;; Copyright (C) 2009 Nikolaj Schumacher
+;;
+;; This file is part of company.
+;;
+;; This program 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 2
+;; of the License, or (at your option) any later version.
+;;
+;; This program 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/>.
+
 (require 'company)
 (require 'semantic-ia)
 (eval-when-compile (require 'cl))
index a43fcba9a83937cb9f116c0a6796bf19ee8070bc..e479fa49008f6e53201e442fee1556e569f1980c 100644 (file)
@@ -1,3 +1,36 @@
+;;; company.el --- extensible inline text completion mechanism
+;;
+;; Copyright (C) 2009 Nikolaj Schumacher
+;;
+;; Author: Nikolaj Schumacher <bugs * nschum de>
+;; Version: 
+;; Keywords: abbrev, convenience, matchis
+;; URL: http://nschum.de/src/emacs/company/
+;; Compatibility: GNU Emacs 23.x
+;;
+;; This file is NOT part of GNU Emacs.
+;;
+;; This program 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 2
+;; of the License, or (at your option) any later version.
+;;
+;; This program 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:
+;;
+;;; Change Log:
+;;
+;;    Initial release.
+;;
+;;; Code:
+
 (eval-when-compile (require 'cl))
 
 (add-to-list 'debug-ignored-errors