diff options
| author | Will Robertson <wspr81@gmail.com> | 2010-05-19 21:30:51 +0930 | 
|---|---|---|
| committer | Will Robertson <wspr81@gmail.com> | 2010-05-19 21:30:51 +0930 | 
| commit | 53fb25bb26ea63c4b324819987a506d845afebb8 (patch) | |
| tree | 350cdde85f686ddbae3d944332c69094feaf12f8 | |
| parent | 8caeb05b062b5a946243337fca5f736fdbec2b74 (diff) | |
| download | luaotfload-53fb25bb26ea63c4b324819987a506d845afebb8.tar.gz | |
Revert "these are typos from a few commits ago, right?"
This reverts commit 0dd503b00ed24cc4a6628e7c0059c3b20fe0e177.
| -rw-r--r-- | otfl-font-nms.lua | 12 | 
1 files changed, 6 insertions, 6 deletions
| diff --git a/otfl-font-nms.lua b/otfl-font-nms.lua index b64292e..9a08446 100644 --- a/otfl-font-nms.lua +++ b/otfl-font-nms.lua @@ -565,9 +565,9 @@ local function scan_texmf_tree(fontnames, newfontnames)      end      if trace_short then          if expandpath("$OSFONTDIR"):is_empty() then -            logs.report("scanning TEXMF fonts...") +            logs.info("scanning TEXMF fonts...")          else -            logs.report("scanning TEXMF and OS fonts...") +            logs.info("scanning TEXMF and OS fonts...")          end      end      local fontdirs = expandpath("$OPENTYPEFONTS"):gsub("^\.", "") @@ -624,13 +624,13 @@ local function scan_os_fonts(fontnames, newfontnames)              logs.report("scanning OS fonts:")          end          if trace_short then -            logs.report("scanning OS fonts...") +            logs.info("scanning OS fonts...")          end          -- under OSX, we don't rely on fc-list, we rely on some static          -- directories instead          if os.name == "macosx" then              if trace_search then -                logs.report("searching in static system directories...") +                logs.info("searching in static system directories...")              end              count = 0              for _,d in ipairs(static_osx_dirs) do @@ -640,7 +640,7 @@ local function scan_os_fonts(fontnames, newfontnames)              end          else              if trace_search then -                logs.report("executing 'fc-list : file' and parsing its result...") +                logs.info("executing 'fc-list : file' and parsing its result...")              end              local data = io.popen("fc-list : file", 'r')              if data then @@ -667,7 +667,7 @@ local function update_names(fontnames, force)      - force is whether we rebuild it from scratch or not      --]]      if trace_short then -        logs.report("Updating the font names database:") +        logs.info("Updating the font names database:")      end      if force then          fontnames = fontnames_init() | 
