1234567891011121314151617181920212223242526272829 |
- #!/usr/bin/env bash
- UCD_FILES='ucd-files'
- UCD_VERSION='ucd-version'
- UNICODE='unicode'
- dejavu_fonts_ucd_version() {
- project_file_contents "$project" "$CONFIGS" "$UCD_VERSION" "$@"
- }
- dejavu_fonts_ucd_files_path() {
- project_file_path "$project" "$CONFIGS" "$UCD_FILES" "$@"
- }
|