Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
lyskom-elisp-client
lyskom-elisp-client
Commits
35dc69c7
Commit
35dc69c7
authored
Mar 12, 1996
by
David Byers
Browse files
Minor lug fixes
parent
9183a304
Changes
4
Hide whitespace changes
Inline
Side-by-side
src/ChangeLog
View file @
35dc69c7
No preview for this file type
src/lyskom-rest.el
View file @
35dc69c7
No preview for this file type
src/vars.el.in
View file @
35dc69c7
...
...
@@ -359,7 +359,8 @@ he gets a y-or-n-p question for all recipients.")
(
defvar
kom-max-buffer-size
nil
"*If non-nil, ensure that buffers won't grow any larger than this"
)
(
defvar
lyskom-print-complex-dates
t
(
defvar
lyskom-print-complex-dates
(
and
(
>=
emacs-minor-version
28
)
(
>=
emacs-major-version
19
))
"*If non-nil, print today and yesterday using a special format."
)
(
defvar
kom-server-aliases
...
...
src/view-text.el
View file @
35dc69c7
...
...
@@ -323,9 +323,10 @@ recipients to it that the user is a member in."
(
defun
lyskom-return-date-and-time
(
time
&optional
fmt
)
"Return date and time as a string. Arg: TIME."
(
let*
((
diff
(
lyskom-calculate-day-diff
time
)))
(
let*
((
diff
(
and
lyskom-print-complex-dates
(
lyskom-calculate-day-diff
time
))))
(
lyskom-format
(
if
(
and
diff
lyskom-print-complex-dates
)
(
if
diff
(
intern
(
concat
(
symbol-name
diff
)
"-time-format-string"
))
(
or
fmt
'time-yyyy-mm-dd-hh-mm
))
(
+
(
time->year
time
)
1900
)
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment