We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Hello Translation hackers
After some package updates and removals, I got an error about `defstruct' being unknown. The following hack got rid of that
diff --git a/google-translate-core-ui.el b/google-translate-core-ui.el index 2bc4af5..a224f06 100644 --- a/google-translate-core-ui.el +++ b/google-translate-core-ui.el @@ -288,2 +288,2 @@ query parameter in HTTP requests.") (defvar google-translate-translation-listening-debug nil "For debug translation listening purposes.") -(defstruct gtos +(cl-defstruct gtos "google translate output structure contains miscellaneous information which intended to be outputed to the buffer, echo area or popup tooltip."
I think defstruct is obsolete but maybe you use that for some backwards reason?
The text was updated successfully, but these errors were encountered:
Symbol's function definition is void: defstruct
Sorry, something went wrong.
Use the function "cl-*" in cl-lib.
6aa5ab8
More fix for atykhonov#126 loop -> cl-loop incf -> cl-incf
also need to fix:
No branches or pull requests
Hello Translation hackers
After some package updates and removals, I got an error about `defstruct' being unknown. The following hack got rid of that
I think defstruct is obsolete but maybe you use that for some backwards reason?
The text was updated successfully, but these errors were encountered: