Bug 2223293

Summary: Missing number, treated as zero when using package "wasysym"
Product: [Fedora] Fedora Reporter: Attila <bugs.kde.attila>
Component: texliveAssignee: Tom "spot" Callaway <spotrh>
Status: NEW --- QA Contact: Fedora Extras Quality Assurance <extras-qa>
Severity: medium Docs Contact:
Priority: unspecified    
Version: 38CC: caznaranl, spotrh, tdawson, than
Target Milestone: ---   
Target Release: ---   
Hardware: x86_64   
OS: Linux   
Whiteboard:
Fixed In Version: Doc Type: If docs needed, set a value
Doc Text:
Story Points: ---
Clone Of: Environment:
Last Closed: Type: ---
Regression: --- Mount Type: ---
Documentation: --- CRM:
Verified Versions: Category: ---
oVirt Team: --- RHEL 7.3 requirements from Atomic Host:
Cloudforms Team: --- Target Upstream Version:
Embargoed:

Description Attila 2023-07-17 09:41:22 UTC
pdflatex throws out an error on Fedora 38 when I try to create a PDF document from a tex file.
It no longer works since I upgraded from Fedora 36 to Feodra 38.


Reproducible: Always

Steps to Reproduce:
1. Create a tex file like

\documentclass[12pt,a4paper]{article}
\usepackage{ae}
\usepackage{german}
\usepackage{wasysym}
\begin{document}
{\Large \Square} ~Test
\end{document}

2. Execute the command pdflatex
Actual Results:  
! Missing number, treated as zero.
<to be read again> 
                   \protect 
l.226 ...eMathSymbol\mho     {\mathord}{wasy}{"30}

Expected Results:  
pdflatex should create the PDF document.

It works if I change the order of the packages from "german", "wasysym" to "wasysym", "german".

\documentclass[12pt,a4paper]{article}
\usepackage{ae}
\usepackage{wasysym}
\usepackage{german}
\begin{document}
{\Large \Square} ~Test
\end{document}


Like I mentioned, the order of the packages did not matter on Fedora 36.