comparison lisp/org/org-indent.el @ 104190:efe4688761b7

Fix header.
author Glenn Morris <rgm@gnu.org>
date Sat, 08 Aug 2009 02:34:17 +0000
parents ac1a55cc2c38
children 7c433d89bd4c
comparison
equal deleted inserted replaced
104189:8bc0331ec4e5 104190:efe4688761b7
1 ;;; org-indent.el --- Dynamic indentation for Org-mode 1 ;;; org-indent.el --- Dynamic indentation for Org-mode
2 ;; Copyright (C) 2008 Free Software Foundation, Inc. 2
3 ;; Copyright (C) 2008, 2009 Free Software Foundation, Inc.
3 ;; 4 ;;
4 ;; Author: Carsten Dominik <carsten at orgmode dot org> 5 ;; Author: Carsten Dominik <carsten at orgmode dot org>
5 ;; Keywords: outlines, hypermedia, calendar, wp 6 ;; Keywords: outlines, hypermedia, calendar, wp
6 ;; Homepage: http://orgmode.org 7 ;; Homepage: http://orgmode.org
7 ;; Version: 6.29c 8 ;; Version: 6.29c
8 ;; 9 ;;
9 ;; This file is part of GNU Emacs. 10 ;; This file is part of GNU Emacs.
10 ;; 11 ;;
11 ;; This file is free software; you can redistribute it and/or modify 12 ;; GNU Emacs 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 ;; 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 ;; the Free Software Foundation, either version 3 of the License, or
14 ;; any later version. 15 ;; (at your option) any later version.
15 16 ;;
16 ;; GNU Emacs is distributed in the hope that it will be useful, 17 ;; GNU Emacs is distributed in the hope that it will be useful,
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of 18 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 19 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 ;; GNU General Public License for more details. 20 ;; GNU General Public License for more details.
20 21 ;;
21 ;; You should have received a copy of the GNU General Public License 22 ;; 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 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
23 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, 24 ;;
24 ;; Boston, MA 02110-1301, USA.
25 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; 25 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
26 ;; 26 ;;
27 ;;; Commentary: 27 ;;; Commentary:
28 28
29 ;; This is an implementation of dynamic virtual indentation. It works 29 ;; This is an implementation of dynamic virtual indentation. It works
277 (org-indent-mode 1))) 277 (org-indent-mode 1)))
278 278
279 (provide 'org-indent) 279 (provide 'org-indent)
280 280
281 ;;; org-indent.el ends here 281 ;;; org-indent.el ends here
282
283