Commit 37941a351c49ae9da43d3ba37cece73f0a2d770a
1 parent
446e137e
Spell check
Showing
7 changed files
with
9 additions
and
4 deletions
README-maintainer.md
| ... | ... | @@ -977,4 +977,4 @@ that clang-format produces several results. (In git this is commit |
| 977 | 977 | The commits that have the bulk of automatic or mechanical reformatting are |
| 978 | 978 | listed in .git-blame-ignore-revs. Any new bulk updates should be added there. |
| 979 | 979 | |
| 980 | -[//]: # (cSpell:ignore pikepdfs readthedocsorg .) | |
| 980 | +[//]: # (cSpell:ignore pikepdfs readthedocsorg dgenerate .) | ... | ... |
cSpell.json
| ... | ... | @@ -174,6 +174,7 @@ |
| 174 | 174 | "filenow", |
| 175 | 175 | "filep", |
| 176 | 176 | "filetrailer", |
| 177 | + "fips", | |
| 177 | 178 | "firstname", |
| 178 | 179 | "firstterm", |
| 179 | 180 | "flarp", |
| ... | ... | @@ -568,6 +569,7 @@ |
| 568 | 569 | "refpage", |
| 569 | 570 | "refpos", |
| 570 | 571 | "reimplement", |
| 572 | + "remappings", | |
| 571 | 573 | "resampler", |
| 572 | 574 | "resave", |
| 573 | 575 | "resourcefinder", |
| ... | ... | @@ -597,6 +599,7 @@ |
| 597 | 599 | "setargv", |
| 598 | 600 | "setjmp", |
| 599 | 601 | "sharedresources", |
| 602 | + "sigstore", | |
| 600 | 603 | "singlehtml", |
| 601 | 604 | "smatch", |
| 602 | 605 | "softlink", | ... | ... |
libqpdf/QPDF_encryption.cc
| ... | ... | @@ -658,6 +658,7 @@ std::string |
| 658 | 658 | Encryption::compute_Perms_value_V5_clear() const |
| 659 | 659 | { |
| 660 | 660 | // From algorithm 3.10 from the PDF 1.7 extension level 3 |
| 661 | + // cSpell:ignore Tadb | |
| 661 | 662 | std::string k = " \xff\xff\xff\xffTadb "; |
| 662 | 663 | int perms = getP(); |
| 663 | 664 | for (size_t i = 0; i < 4; ++i) { | ... | ... |
libqpdf/qpdf/QPDF_private.hh
| ... | ... | @@ -566,7 +566,7 @@ class QPDF::Doc::Encryption |
| 566 | 566 | std::string recover_encryption_key_with_password(std::string const& password) const; |
| 567 | 567 | bool |
| 568 | 568 | check_owner_password_V4(std::string& user_password, std::string const& owner_password) const; |
| 569 | - bool check_owner_password_V5(std::string const& owner_passworda) const; | |
| 569 | + bool check_owner_password_V5(std::string const& owner_password) const; | |
| 570 | 570 | std::string compute_Perms_value_V5_clear() const; |
| 571 | 571 | std::string |
| 572 | 572 | compute_O_rc4_key(std::string const& user_password, std::string const& owner_password) const; | ... | ... |
libtests/qutil.cc
| ... | ... | @@ -371,6 +371,7 @@ check_analyze(std::string const& str, bool has8bit, bool utf8, bool utf16) |
| 371 | 371 | void |
| 372 | 372 | explicit_utf8_test() |
| 373 | 373 | { |
| 374 | + // cSpell:ignore xbfnot xbenot | |
| 374 | 375 | assert(QUtil::is_explicit_utf8("\xef\xbb\xbfnot empty")); |
| 375 | 376 | assert(QUtil::is_explicit_utf8("\xef\xbb\xbf")); |
| 376 | 377 | assert(!QUtil::is_explicit_utf8("\xef\xbb\xbenot explicit")); | ... | ... |
manual/design.rst
| ... | ... | @@ -56,7 +56,7 @@ unacceptable resource usage, is counter-productive rather than useful. |
| 56 | 56 | |
| 57 | 57 | To accommodate the needs of those who use qpdf as a tool for inspecting and |
| 58 | 58 | investigating PDF files, qpdf version 12.3 introduced a special |
| 59 | -``ìnspection mode`` which is enabled using the | |
| 59 | +``inspection mode`` which is enabled using the | |
| 60 | 60 | ``qpdf::global::options::inspection_mode`` function. In inspection mode, only a |
| 61 | 61 | very limited set of basic operations is supported and a number of automatic |
| 62 | 62 | repairs are disabled. Transformations of the input files such as linearizing files, | ... | ... |
manual/release-notes.rst
| ... | ... | @@ -143,7 +143,7 @@ more detail. |
| 143 | 143 | |
| 144 | 144 | - Setting :qpdf:ref:`--compress-streams` to ``n`` or |
| 145 | 145 | ``QPDFWriter::setCompressStreams(false)`` no longer automatically |
| 146 | - causes the outputfile to be decrypted. Set :qpdf:ref:`--decrypt` if this | |
| 146 | + causes the output file to be decrypted. Set :qpdf:ref:`--decrypt` if this | |
| 147 | 147 | is the intended behaviour. |
| 148 | 148 | |
| 149 | 149 | - There has been some refactoring of stream filtering. These are optimized | ... | ... |