dotemacs

My Emacs configuration
git clone git://git.entf.net/dotemacs
Log | Files | Refs | LICENSE

org-contribdir.el (1519B)


      1 ;;; org-contribdir.el --- Mark the location of the contrib directory
      2 ;; Copyright (C) 2009-2021 Free Software Foundation, Inc.
      3 ;;
      4 ;; Author: Carsten Dominik <carsten.dominik@gmail.com>
      5 ;; Keywords: outlines, hypermedia, calendar, wp
      6 ;; Homepage: https://git.sr.ht/~bzg/org-contrib
      7 ;; Version: 0.01
      8 ;;
      9 ;; This file is not part of GNU Emacs.
     10 ;;
     11 ;; This program is free software; you can redistribute it and/or modify
     12 ;; it under the terms of the GNU General Public License as published by
     13 ;; the Free Software Foundation; either version 3, or (at your option)
     14 ;; any later version.
     15 
     16 ;; This program is distributed in the hope that it will be useful,
     17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
     18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
     19 ;; GNU General Public License for more details.
     20 
     21 ;; You should have received a copy of the GNU General Public License
     22 ;; along with GNU Emacs; see the file COPYING.  If not, write to the
     23 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
     24 ;; Boston, MA 02110-1301, USA.
     25 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
     26 ;;
     27 ;;; Commentary:
     28 ;;
     29 
     30 ;; The sole purpose of this file is to be located in the same place
     31 ;; as where the contributed Org files are located, typically in the
     32 ;; contrib/lisp directory of the Org-mode distribution.  This is to
     33 ;; make sure that the command `org-reload' can reliably locate
     34 ;; contributed org files.
     35 
     36 (provide 'org-contribdir)
     37 
     38 ;;; org-contribdir.el ends here