Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
emacs
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
1
Issues
1
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
emacs
emacs
Commits
bb16bffb
Commit
bb16bffb
authored
Jul 20, 2014
by
Stefan Monnier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Indentation, punctuation, and other nitpicks.
parent
5bfcb88c
Changes
5
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
21 additions
and
19 deletions
+21
-19
lisp/emacs-lisp/cl-macs.el
lisp/emacs-lisp/cl-macs.el
+2
-1
lisp/net/rcirc.el
lisp/net/rcirc.el
+2
-1
lisp/progmodes/sh-script.el
lisp/progmodes/sh-script.el
+2
-2
src/term.c
src/term.c
+9
-9
src/terminal.c
src/terminal.c
+6
-6
No files found.
lisp/emacs-lisp/cl-macs.el
View file @
bb16bffb
...
...
@@ -2514,7 +2514,8 @@ non-nil value, that slot cannot be set via `setf'.
',accessor
',name
))))
,
(
if
(
eq
type
'vector
)
`
(
aref
cl-x
,
pos
)
(
if
(
=
pos
0
)
'
(
car
cl-x
)
`
(
nth
,
pos
cl-x
))))
forms
)
`
(
nth
,
pos
cl-x
))))
forms
)
(
push
(
cons
accessor
t
)
side-eff
)
(
if
(
cadr
(
memq
:read-only
(
cddr
desc
)))
(
push
`
(
gv-define-expander
,
accessor
...
...
lisp/net/rcirc.el
View file @
bb16bffb
...
...
@@ -679,7 +679,8 @@ When 0, do not auto-reconnect."
(
format
"%s: %s (%S)"
(
process-name
process
)
sentinel
(
process-status
process
))
(
not
rcirc-target
))
(
process-status
process
))
(
not
rcirc-target
))
(
rcirc-disconnect-buffer
)))
(
when
(
and
(
string=
sentinel
"deleted"
)
(
<
0
rcirc-reconnect-delay
))
...
...
lisp/progmodes/sh-script.el
View file @
bb16bffb
...
...
@@ -910,7 +910,7 @@ See `sh-feature'.")
(:foreground "tan1" ))
(t
(:weight bold)))
"Face to show a here-document"
"Face to show a here-document
.
"
:group 'sh-indentation)
;; These colors are probably icky. It's just a placeholder though.
...
...
@@ -921,7 +921,7 @@ See `sh-feature'.")
(:foreground "magenta"))
(t
(:weight bold)))
"Face to show quoted execs like `
`
"
"Face to show quoted execs like `
blabla`.
"
:group 'sh-indentation)
(define-obsolete-face-alias 'sh-heredoc-face 'sh-heredoc "22.1")
(defvar sh-heredoc-face 'sh-heredoc)
...
...
src/term.c
View file @
bb16bffb
...
...
@@ -105,7 +105,7 @@ static _Noreturn void vfatal (const char *str, va_list ap)
#define OUTPUT1_IF(tty, a) do { if (a) emacs_tputs ((tty), a, 1, cmputc); } while (0)
/* Display space properties */
/* Display space properties
.
*/
/* Chain of all tty device parameters. */
struct
tty_display_info
*
tty_list
;
...
...
@@ -4042,8 +4042,8 @@ init_tty (const char *name, const char *terminal_type, bool must_succeed)
open a frame on the same terminal. */
int
flags
=
O_RDWR
|
O_NOCTTY
|
(
ctty
?
0
:
O_IGNORE_CTTY
);
int
fd
=
emacs_open
(
name
,
flags
,
0
);
tty
->
input
=
tty
->
output
=
((
fd
<
0
||
!
isatty
(
fd
))
tty
->
input
=
tty
->
output
=
((
fd
<
0
||
!
isatty
(
fd
))
?
NULL
:
fdopen
(
fd
,
"w+"
));
...
...
src/terminal.c
View file @
bb16bffb
...
...
@@ -121,7 +121,7 @@ raw_cursor_to (struct frame *f, int row, int col)
(
*
FRAME_TERMINAL
(
f
)
->
raw_cursor_to_hook
)
(
f
,
row
,
col
);
}
/* Erase operations */
/* Erase operations
.
*/
/* Clear from cursor to end of frame. */
void
...
...
@@ -131,7 +131,7 @@ clear_to_end (struct frame *f)
(
*
FRAME_TERMINAL
(
f
)
->
clear_to_end_hook
)
(
f
);
}
/* Clear entire frame */
/* Clear entire frame
.
*/
void
clear_frame
(
struct
frame
*
f
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment