mirror of
https://github.com/kastdeur/bagpipe.ly.git
synced 2025-01-04 23:23:32 +01:00
Modernized date formatting code
This commit is contained in:
parent
01591eb7c9
commit
528a73c1f8
2 changed files with 2 additions and 8 deletions
|
@ -4,10 +4,7 @@
|
|||
|
||||
\version "2.16.0"
|
||||
|
||||
% Bring in the time/date package. Set format to month day, year
|
||||
|
||||
#(use-modules (srfi srfi-19))
|
||||
today = #(date->string (current-date) "~B ~e, ~Y")
|
||||
today = #(strftime "%B %e, %Y" (localtime (current-time)))
|
||||
|
||||
\paper {
|
||||
raggedbottom = ##t
|
||||
|
|
|
@ -4,10 +4,7 @@
|
|||
|
||||
\version "2.16.0"
|
||||
|
||||
% Bring in the time/date package. Set format to month day, year
|
||||
|
||||
#(use-modules (srfi srfi-19))
|
||||
today = #(date->string (current-date) "~B ~e, ~Y")
|
||||
today = #(strftime "%B %e, %Y" (localtime (current-time)))
|
||||
|
||||
\paper {
|
||||
raggedbottom = ##t
|
||||
|
|
Loading…
Reference in a new issue