mirror of
https://github.com/smarty-php/smarty.git
synced 2025-10-19 15:35:20 +02:00
17 lines
478 B
Plaintext
Executable File
17 lines
478 B
Plaintext
Executable File
;; $Id$
|
|
;;
|
|
;; This file is part of the Modular DocBook Stylesheet distribution.
|
|
;; See ../README or http://www.nwalsh.com/docbook/dsssl/
|
|
;;
|
|
|
|
;; If **ANY** change is made to this file, you _MUST_ alter the
|
|
;; following definition:
|
|
|
|
(define (stylesheet-version)
|
|
(let* ((version "&VERSION;")
|
|
(verslen (string-length version)))
|
|
(string-append
|
|
"Modular DocBook Print Stylesheet Version "
|
|
;; trim off the trailing newline
|
|
(substring version 0 (- verslen 1)))))
|