about summary refs log tree commit diff
diff options
context:
space:
mode:
-rwxr-xr-xconverter/other/anytopnm3
-rw-r--r--doc/HISTORY3
2 files changed, 5 insertions, 1 deletions
diff --git a/converter/other/anytopnm b/converter/other/anytopnm
index 82f57b3b..17464fac 100755
--- a/converter/other/anytopnm
+++ b/converter/other/anytopnm
@@ -129,7 +129,8 @@ computeTypeFromTypeDescription () {
             filetype=tiff
             ;;
     
-        *PC*bitmap*data* )
+        # We have seen "PC bitmap" and "PC bitmap data"
+        *PC*bitmap* )
             filetype=bmp
             ;;
         
diff --git a/doc/HISTORY b/doc/HISTORY
index 29c39ed1..dcd9dce4 100644
--- a/doc/HISTORY
+++ b/doc/HISTORY
@@ -22,6 +22,9 @@ not yet  BJH  Release 10.51.00
               pamflip: speedup for PBM.  Use SSE2 and skip some idempotent
               pixel movement.  Thanks Prophet of the Way <afu@wta.att.ne.jp>.
 
+              anytopnm: recognize "PC bitmap" in 'file' response as BMP.
+              (in addition to existing "PC bitmap data").
+
               libnetpbm, various PBM programs: Use SSE insted of MMX.  Thanks
               Prophet of the Way <afu@wta.att.ne.jp>.