diff options
author | Matthias Benkard <code@mail.matthias.benkard.de> | 2007-05-29 11:48:22 +0200 |
---|---|---|
committer | Matthias Benkard <code@mail.matthias.benkard.de> | 2007-05-29 11:48:22 +0200 |
commit | 050de50f4610061c4facb40fea521484d5485b89 (patch) | |
tree | 657b1c37b9e79e139ddb5aeeb1841a5ee6c63bf1 | |
parent | b85827ccd6a478d6dcf82836d2adf6b034efaf5d (diff) |
Add a LAST-MODIFICATION field to class JOURNAL-ENTRY.
darcs-hash:1663026972190249829b9f43c0b20e5f56fb9823
-rwxr-xr-x | journal.lisp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/journal.lisp b/journal.lisp index 0c8156e..841faee 100755 --- a/journal.lisp +++ b/journal.lisp @@ -78,6 +78,10 @@ (date :type (integer 0) :accessor date-of :initarg :date) + (last-modification :type (or null (integer 0)) + :accessor last-modification-of + :initarg :last-modification + :initform nil) (body :type string :accessor body-of :initarg :body |