Travis testing - #1
Open
nitishch wants to merge 61 commits into
Open
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. |
Owner
Author
|
One more comment to test API. |
nitishch
commented
Jun 5, 2018
|
|
||
| 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% |
|
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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Testing PR.