-
Notifications
You must be signed in to change notification settings - Fork 0
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
Travis testing #1
base: master
Are you sure you want to change the base?
Conversation
usage: (concat &rest SEQUENCES)
…init minor improvements to the .gdbinit file
Use a Travis style yml file for the configuration.
add method multibyte_characters_enabled
Just like the C code we ported it from. In my defense, I just blindly copied this code from Sean, and didn't double-check it. Fixes remacs#742
Use like this. Pay attention to the escaping!! ``` $ pwd /path/to/top/of/remacs/tree $ git bisect start $ git bisect good @{"2 weeks ago"} # last time you know it worked $ git bisect bad HEAD # top of current tree $ git bisect run rust_src/admin/did-it-work.sh -Q --eval "\"(some-lisp)\"" ``` Each iteration the script will build remacs and run it with the arguments provided. Exit emacs if possible or Control-C it from the terminal. You will then be asked "Did it work?". Press Y or N and enter. Git will find the first broken commit if possible. The broken commit hash will be output by Git if it found it. Run `git bisect reset` when you are done and the tree will be back to where you started. `git checkout ABC123 # the bad hash` will set the tree to the first broken version so you can investigate.
port process-exit-status
…fined with lisp_fn(name=
syntax.rs introduction
Port of system-users from dired.c
port set_marker_internal
Note: alphabetic order of functions in casefiddle.rs rather than emacs order
Now that we've merged LispObject and Lisp_Object, there's no need for this function. Removing it makes the code significantly less verbose in places.
Remove LispObject::from_raw
First, reorg the code to be more clear. Second, use bindgen generated code to access the C structs. The underlying bug was due to mishandling of the glyph_row array. Thanks to @cjohansson for the debugging help. Closes remacs#744, remacs#726, remacs#717
Added the text to CONTRIBUTING.md on instructions to install the hook
Commenting from UI. |
One more comment to test API. |
|
||
REM This is the recommended way to choose the toolchain version, according to | ||
REM Appveyor's documentation. | ||
SET PATH=C:\Program Files (x86)\MSBuild\%TOOLCHAIN_VERSION%\Bin;%PATH% |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
File comment trial.
From bot |
1 similar comment
From bot |
b |
Code format check failed. Please use |
1 similar comment
Code format check failed. Please use |
Code format check failed. Please use |
Code format check failed. Please use |
Testing PR.