aboutsummaryrefslogtreecommitdiffstats
path: root/src/widgetprv.h
diff options
context:
space:
mode:
authorPaul Eggert2017-02-18 18:16:37 -0800
committerPaul Eggert2017-02-18 18:17:03 -0800
commitb2a83eed23d540b4b0ab9e0bf5605821011bfd7d (patch)
tree20545c597c19d213252bcdba7076a807ec633867 /src/widgetprv.h
parent7f89c208bf4bb256c67cc59351f4171c7a6b63aa (diff)
downloademacs-b2a83eed23d540b4b0ab9e0bf5605821011bfd7d.tar.gz
emacs-b2a83eed23d540b4b0ab9e0bf5605821011bfd7d.zip
Use 'char *FOO' instead of 'char* FOO'
Diffstat (limited to 'src/widgetprv.h')
-rw-r--r--src/widgetprv.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/widgetprv.h b/src/widgetprv.h
index 9d31bddbe78..309aed779da 100644
--- a/src/widgetprv.h
+++ b/src/widgetprv.h
@@ -25,11 +25,11 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
25#include <X11/CoreP.h> 25#include <X11/CoreP.h>
26 26
27typedef struct { 27typedef struct {
28 struct frame* frame; /* the *emacs* frame object */ 28 struct frame *frame; /* the *emacs* frame object */
29 29
30 /* Resources that can't be done from lisp. 30 /* Resources that can't be done from lisp.
31 */ 31 */
32 char* geometry; /* geometry spec of this frame */ 32 char * geometry; /* geometry spec of this frame */
33 Boolean iconic; /* whether this frame is iconic */ 33 Boolean iconic; /* whether this frame is iconic */
34 34
35 /* The rest of this is crap and should be deleted. 35 /* The rest of this is crap and should be deleted.