summaryrefslogtreecommitdiff
path: root/journal.lisp
diff options
context:
space:
mode:
authorMatthias Benkard <code@mail.matthias.benkard.de>2007-05-29 11:48:22 +0200
committerMatthias Benkard <code@mail.matthias.benkard.de>2007-05-29 11:48:22 +0200
commit050de50f4610061c4facb40fea521484d5485b89 (patch)
tree657b1c37b9e79e139ddb5aeeb1841a5ee6c63bf1 /journal.lisp
parentb85827ccd6a478d6dcf82836d2adf6b034efaf5d (diff)
Add a LAST-MODIFICATION field to class JOURNAL-ENTRY.
darcs-hash:1663026972190249829b9f43c0b20e5f56fb9823
Diffstat (limited to 'journal.lisp')
-rwxr-xr-xjournal.lisp4
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