-
-
Notifications
You must be signed in to change notification settings - Fork 48
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
XF86XK_AudioForward is not exported #21
Comments
Okay. There's actually a lot of symbols missing. It's a generated file, and the script that generated it seems not to be in revision control. I've emailed the guy who added XF86.hsc to the repository to see if he still has the script lying around. If not, or I don't hear from him, I'll take a stab at writing a new script. |
Just got an email from zythmer. The relevant files, which he placed in the public domain, follow. HsAllKeySyms.h:
gen.sh:
check.sh:
create_hsc_keysym.pl, the real workhorse:
|
Shouldn't these files be put in the repository? for file in $(ls *.hsc); do is unsafe. It should be: for file in *.hsc; do |
How do we want to maintain the hsc file going forward? Accept patches or take ownership of these perl scripts and put them in the repo? |
Any update? |
@sboosali I took a brief look today. These scripts appear to work, but the files they generate are waaaay too different from the files that are currently in the repository for my taste. As far as I can tell I would have to manually review each updated hsc file to check that nothing important has been lost; I'm not going to do that. If somebody wants to update the scripts to make the diffs more manageable, I'll reconsider. |
XF86XK_AudioForward
is not exported fromGraphics.X11.ExtraTypes.XF86
even though a similarXF86XK_AudioRewind
is.The text was updated successfully, but these errors were encountered: