;;; helm.el --- Helm is an Emacs incremental and narrowing framework -*- lexical-binding: t -*- ;; Copyright (C) 2007 Tamas Patrovics ;; 2008 ~ 2011 rubikitch ;; 2011 ~ 2021 Thierry Volpiatto ;; This is a fork of anything.el wrote by Tamas Patrovics. ;; Authors of anything.el: Tamas Patrovics ;; rubikitch ;; Thierry Volpiatto ;; Author: Thierry Volpiatto ;; Version: 3.8.5 ;; URL: https://emacs-helm.github.io/helm/ ;; Package-Requires: ((helm-core "3.8.4") (popup "0.5.3")) ;; 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 3 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 . ;;; Commentary: ;; This is just a wrapper for helm-core.el and a place holder we ;; currently use only to hold the package's metadata in the header. ;;; Code: (require 'helm-core) (provide 'helm) ;;; helm.el ends here