# HG changeset patch # User Oliver Seidel # Date 878067713 0 # Node ID bc27487e43bcc36288aa944146f355a29e6c75cc # Parent 0ccfc7a0662f7752c0d36cb176000528901401b3 Added fix from Frank Ridderbusch , an apostrophe was missing. diff -r 0ccfc7a0662f -r bc27487e43bc lisp/calendar/todo-mode.el --- a/lisp/calendar/todo-mode.el Tue Oct 28 14:17:40 1997 +0000 +++ b/lisp/calendar/todo-mode.el Tue Oct 28 19:41:53 1997 +0000 @@ -4,7 +4,7 @@ ;; Author: Oliver.Seidel@cl.cam.ac.uk (was valid on Aug 2, 1997) ;; Created: 2 Aug 1997 -;; Version: $Id: todo-mode.el,v 1.22 1997/10/24 16:53:20 os10000 Exp os10000 $ +;; Version: $Id: todo-mode.el,v 1.23 1997/10/24 17:30:54 os10000 Exp os10000 $ ;; Keywords: Categorised TODO list editor, todo-mode ;; This file is part of GNU Emacs. @@ -72,7 +72,7 @@ ;; ;; Which version of todo-mode.el does this documentation refer to? ;; -;; $Id: todo-mode.el,v 1.22 1997/10/24 16:53:20 os10000 Exp os10000 $ +;; $Id: todo-mode.el,v 1.23 1997/10/24 17:30:54 os10000 Exp os10000 $ ;; ;; Pre-Requisites ;; @@ -245,6 +245,16 @@ ;;; Change Log: ;; $Log: todo-mode.el,v $ +;; Revision 1.23 1997/10/24 17:30:54 os10000 +;; Added three suggestions from Carsten +;; Dominik : +;; +;; - recommend autoloading instead of require +;; - inserting from different buffer didn't work +;; (now fixed -- I pray) +;; - provided public entry point to insert items +;; from normal lisp code +;; ;; Revision 1.22 1997/10/24 16:53:20 os10000 ;; Paul Stodghill writes: ;; @@ -979,7 +989,7 @@ (goto-char (point-min)) (and (search-forward "todo-cats:" nil t) (replace-match "todo-categories:")) - (make-local-variable todo-categories) + (make-local-variable 'todo-categories) (setq todo-categories todo-cats))) (beginning-of-line) (todo-category-select))